summaryrefslogtreecommitdiff
path: root/lib_arm
diff options
context:
space:
mode:
authorVaibhav Hiremath <hvaibhav@ti.com>2009-06-13 00:47:34 +0530
committerJustin Waters <justin.waters@timesys.com>2009-10-21 16:46:32 -0400
commit697eb49d001d1ba53969065cddfe9a9f13ed83a5 (patch)
tree562c4740af923aa1e80fd4d5f3b5c6893d46f55b /lib_arm
parentff0b91fdc9662dbfab1572e848fd405603bd9797 (diff)
Added OMAP3517/3505 support
Added support for OMAP3517/3505 SoC, it includes all the changes from Mani's commit for OMAP3517 and review comments fix. Major features/changes - - New config file - New board files - New ethernet driver Major Review comments - - Added macine ID for OMAP3517 - Naming conventions used.
Diffstat (limited to 'lib_arm')
-rw-r--r--lib_arm/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c
index 09eaaf25c4..4ed200de2f 100644
--- a/lib_arm/board.c
+++ b/lib_arm/board.c
@@ -432,9 +432,9 @@ void start_armboot (void)
/* Perform network card initialisation if necessary */
#ifdef CONFIG_DRIVER_TI_EMAC
-extern void davinci_eth_set_mac_addr (const u_int8_t *addr);
+extern void cpgmac_eth_set_mac_addr (const u_int8_t *addr);
if (getenv ("ethaddr")) {
- davinci_eth_set_mac_addr(gd->bd->bi_enetaddr);
+ cpgmac_eth_set_mac_addr(gd->bd->bi_enetaddr);
}
#endif