mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
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>
This commit is contained in:
parent
914947313a
commit
65d3d99c28
2 changed files with 10 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue