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 <[EMAIL PROTECTED]> --- board/freescale/mpc8610hpcd/mpc8610hpcd.c | 10 ++++++++++ net/eth.c | 4 ---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd.c b/board/freescale/mpc8610hpcd/mpc8610hpcd.c index c85f373..0122e6d 100644 --- a/board/freescale/mpc8610hpcd/mpc8610hpcd.c +++ b/board/freescale/mpc8610hpcd/mpc8610hpcd.c @@ -515,3 +515,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; +} diff --git a/net/eth.c b/net/eth.c index 4eb20e3..eaa58fa 100644 --- a/net/eth.c +++ b/net/eth.c @@ -65,7 +65,6 @@ extern int rtl8169_initialize(bd_t*); extern int scc_initialize(bd_t*); extern int skge_initialize(bd_t*); extern int tsi108_eth_initialize(bd_t*); -extern int uli526x_initialize(bd_t *); extern int npe_initialize(bd_t *); extern int uec_initialize(int); extern int at91sam9_eth_initialize(bd_t *); @@ -253,9 +252,6 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_TSI108_ETH) tsi108_eth_initialize(bis); #endif -#if defined(CONFIG_ULI526X) - uli526x_initialize(bis); -#endif #if defined(CONFIG_RTL8139) rtl8139_initialize(bis); #endif -- 1.5.4.3 ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ U-Boot-Users mailing list U-Boot-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/u-boot-users