X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=board%2Fti%2Fomap1610inn%2Fomap1610innovator.c;h=44818bbdaee4bcb96f2795394511d687e4c7364e;hb=2ff6922280025c1315c53fa2eb4ab33f0c9591de;hp=2e04ad4bddb024819fe2eaf26483f089e7c6207d;hpb=3ea43ff7738582e2ed00a2ede532c702f7b1d737;p=u-boot diff --git a/board/ti/omap1610inn/omap1610innovator.c b/board/ti/omap1610inn/omap1610innovator.c index 2e04ad4bdd..44818bbdae 100644 --- a/board/ti/omap1610inn/omap1610innovator.c +++ b/board/ti/omap1610inn/omap1610innovator.c @@ -32,6 +32,7 @@ */ #include +#include #if defined(CONFIG_OMAP1610) #include <./configs/omap1510.h> #endif @@ -302,3 +303,14 @@ void peripheral_power_enable (void) *SW_CLOCK_REQUEST |= UART1_48MHZ_ENABLE; } + +#ifdef CONFIG_CMD_NET +int board_eth_init(bd_t *bis) +{ + int rc = 0; +#ifdef CONFIG_LAN91C96 + rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE); +#endif + return rc; +} +#endif