summaryrefslogtreecommitdiffstats
path: root/board/logicpd/zoom1
diff options
context:
space:
mode:
authorBen Warren <biggerbadderben@gmail.com>2009-12-14 16:30:39 -0800
committerBen Warren <biggerbadderben@gmail.com>2009-12-14 16:42:03 -0800
commit1ab70f6fff9fa3b7910c11b874f625e004256c50 (patch)
tree97cd17895d2a640bafdb709ad10078f01491f5fe /board/logicpd/zoom1
parent076cd24cb4278c125c8f36df386852dc0fcfefae (diff)
downloadblackbird-obmc-uboot-1ab70f6fff9fa3b7910c11b874f625e004256c50.tar.gz
blackbird-obmc-uboot-1ab70f6fff9fa3b7910c11b874f625e004256c50.zip
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/logicpd/zoom1')
-rw-r--r--board/logicpd/zoom1/zoom1.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/board/logicpd/zoom1/zoom1.c b/board/logicpd/zoom1/zoom1.c
index f4d3754cac..a144f52e6f 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
OpenPOWER on IntegriCloud