diff options
Diffstat (limited to 'board/delta/delta.c')
-rw-r--r-- | board/delta/delta.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/board/delta/delta.c b/board/delta/delta.c index 84ff47e53c7..a2942135fd3 100644 --- a/board/delta/delta.c +++ b/board/delta/delta.c @@ -22,6 +22,7 @@ */ #include <common.h> +#include <netdev.h> #include <i2c.h> #include <da9030.h> #include <malloc.h> @@ -363,3 +364,14 @@ void hw_watchdog_reset(void) i2c_reg_write(addr, SYS_CONTROL_A, val); } #endif + +#ifdef CONFIG_CMD_NET +int board_eth_init(bd_t *bis) +{ + int rc = 0; +#ifdef CONFIG_SMC91111 + rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); +#endif + return rc; +} +#endif |