diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2009-12-14 16:30:39 -0800 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2009-12-14 16:42:03 -0800 |
commit | 1ab70f6fff9fa3b7910c11b874f625e004256c50 (patch) | |
tree | 97cd17895d2a640bafdb709ad10078f01491f5fe /board/ti/omap730p2/omap730p2.c | |
parent | 076cd24cb4278c125c8f36df386852dc0fcfefae (diff) | |
download | u-boot-imx-1ab70f6fff9fa3b7910c11b874f625e004256c50.zip u-boot-imx-1ab70f6fff9fa3b7910c11b874f625e004256c50.tar.gz u-boot-imx-1ab70f6fff9fa3b7910c11b874f625e004256c50.tar.bz2 |
Net: Clean up LAN91C96 Support
A previous Commit converted the LAN91C96 Ethernet driver to using the
CONFIG_NET_MULTI API, but did not include full board support. This patch
finishes the job.
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/ti/omap730p2/omap730p2.c')
-rw-r--r-- | board/ti/omap730p2/omap730p2.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/board/ti/omap730p2/omap730p2.c b/board/ti/omap730p2/omap730p2.c index 309d667..954ced5 100644 --- a/board/ti/omap730p2/omap730p2.c +++ b/board/ti/omap730p2/omap730p2.c @@ -30,6 +30,7 @@ */ #include <common.h> +#include <netdev.h> #if defined(CONFIG_OMAP730) #include <./configs/omap730.h> #endif @@ -263,3 +264,14 @@ void peripheral_power_enable (void) *MuxConfReg &= (0xFF1FFFFF); *MuxConfReg &= (0xF1FFFFFF); } + +#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 |