diff options
Diffstat (limited to 'lib_arm/board.c')
| -rw-r--r-- | lib_arm/board.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index 6e3ef0880..5ade882a9 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -430,9 +430,9 @@ void start_armboot (void)  	/* Perform network card initialisation if necessary */  #ifdef CONFIG_DRIVER_TI_EMAC -extern void dm644x_eth_set_mac_addr (const u_int8_t *addr); +extern void davinci_eth_set_mac_addr (const u_int8_t *addr);  	if (getenv ("ethaddr")) { -		dm644x_eth_set_mac_addr(gd->bd->bi_enetaddr); +		davinci_eth_set_mac_addr(gd->bd->bi_enetaddr);  	}  #endif  |