X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=board%2Fassabet%2Fassabet.c;h=753c8d2435280531233431e7f5915b22962b5378;hb=e6441c4f4070aac6825f5b195f38dfe1da53675c;hp=4f84a58117b6a6069a4278326fa823d240c7c71f;hpb=197b049b8b8a488384f351b988dd15f78830ba4e;p=u-boot diff --git a/board/assabet/assabet.c b/board/assabet/assabet.c index 4f84a58117..753c8d2435 100644 --- a/board/assabet/assabet.c +++ b/board/assabet/assabet.c @@ -25,6 +25,7 @@ */ #include +#include #include DECLARE_GLOBAL_DATA_PTR; @@ -46,7 +47,7 @@ DECLARE_GLOBAL_DATA_PTR; #define ECSR_PWRDWN 0x04 #define ECSR_INT 0x02 #define SMC_IO_SHIFT 2 -#define NCR_0 (*((volatile u_char *)(0x100000a0))) +#define NCR_0 (*((volatile u_char *)(0x100000a0))) #define NCR_ENET_OSC_EN (1<<3) static inline u8 @@ -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