summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorBen Warren <biggerbadderben@gmail.com>2008-07-11 23:42:19 -0700
committerBen Warren <biggerbadderben@gmail.com>2008-08-26 22:17:45 -0700
commit65d3d99c28dc363d15eaee78225ff643df499b97 (patch)
treef22c8f0166cc33a8ce1be97ee17178ba7700e685 /board
parent914947313a710f5dcf06beaf7f2aa24f1ebcce4f (diff)
downloadtalos-obmc-uboot-65d3d99c28dc363d15eaee78225ff643df499b97.tar.gz
talos-obmc-uboot-65d3d99c28dc363d15eaee78225ff643df499b97.zip
Moved initialization of ULI526X Ethernet driver to board code.
The only board using this driver is the Freescale MPC8610HPCD board. Removed initialization for the driver from net/eth.c Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mpc8610hpcd/mpc8610hpcd.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd.c b/board/freescale/mpc8610hpcd/mpc8610hpcd.c
index c9dde4d1a3..af79fc2c67 100644
--- a/board/freescale/mpc8610hpcd/mpc8610hpcd.c
+++ b/board/freescale/mpc8610hpcd/mpc8610hpcd.c
@@ -519,3 +519,13 @@ get_board_sys_clk(ulong dummy)
return val;
}
+
+extern int uli526x_initialize(bd_t *);
+
+int board_eth_init(bd_t *bis)
+{
+#if defined(CONFIG_ULI526)
+ uli526x_initialize(bis);
+#endif
+ return 0;
+}
OpenPOWER on IntegriCloud