X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=board%2Fassabet%2Fassabet.c;h=753c8d2435280531233431e7f5915b22962b5378;hb=e6441c4f4070aac6825f5b195f38dfe1da53675c;hp=6f02db29b80fa7e7179afd66cf35cced6d486c83;hpb=eddc7c46c6030d6eca29ac254c9db98198be572d;p=u-boot diff --git a/board/assabet/assabet.c b/board/assabet/assabet.c index 6f02db29b8..753c8d2435 100644 --- a/board/assabet/assabet.c +++ b/board/assabet/assabet.c @@ -25,6 +25,7 @@ */ #include +#include #include DECLARE_GLOBAL_DATA_PTR; @@ -117,3 +118,14 @@ dram_init(void) return (0); } + +#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