diff options
author | Wolfgang Denk <wd@denx.de> | 2009-12-17 22:59:27 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-17 22:59:27 +0100 |
commit | b6535daefd65c93ea429bc4728062379dda6e482 (patch) | |
tree | 2ba6d227112143d5e522a2aca72a85671e08bd55 /board/logicpd | |
parent | e5e4e705ce402856a4800ebf4c0cc163d41b58b0 (diff) | |
parent | 1ab70f6fff9fa3b7910c11b874f625e004256c50 (diff) | |
download | u-boot-imx-b6535daefd65c93ea429bc4728062379dda6e482.zip u-boot-imx-b6535daefd65c93ea429bc4728062379dda6e482.tar.gz u-boot-imx-b6535daefd65c93ea429bc4728062379dda6e482.tar.bz2 |
Merge branch 'next' of git://git.denx.de/u-boot-net
Diffstat (limited to 'board/logicpd')
-rw-r--r-- | board/logicpd/zoom1/zoom1.c | 12 | ||||
-rw-r--r-- | board/logicpd/zoom2/zoom2.c | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/board/logicpd/zoom1/zoom1.c b/board/logicpd/zoom1/zoom1.c index f4d3754..a144f52 100644 --- a/board/logicpd/zoom1/zoom1.c +++ b/board/logicpd/zoom1/zoom1.c @@ -31,6 +31,7 @@ * MA 02111-1307 USA */ #include <common.h> +#include <netdev.h> #include <twl4030.h> #include <asm/io.h> #include <asm/arch/mux.h> @@ -86,3 +87,14 @@ void set_muxconf_regs(void) /* platform specific muxes */ MUX_ZOOM1_MDK(); } + +#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 diff --git a/board/logicpd/zoom2/zoom2.c b/board/logicpd/zoom2/zoom2.c index dadbeb6..21afc29 100644 --- a/board/logicpd/zoom2/zoom2.c +++ b/board/logicpd/zoom2/zoom2.c @@ -29,6 +29,7 @@ * MA 02111-1307 USA */ #include <common.h> +#include <netdev.h> #ifdef CONFIG_STATUS_LED #include <status_led.h> #endif @@ -177,3 +178,14 @@ void set_muxconf_regs (void) /* platform specific muxes */ MUX_ZOOM2 (); } + +#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 |