mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-26 00:21:37 +00:00
Moved initialization of NATSEMI Ethernet controller to board_eth_init()
Affected boards: a3000 Removed initialization of the driver from net/eth.c Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
19403633dd
commit
b902b8dda5
4 changed files with 12 additions and 4 deletions
|
@ -46,6 +46,7 @@ int greth_initialize(bd_t *bis);
|
|||
int macb_eth_initialize(int id, void *regs, unsigned int phy_addr);
|
||||
int mcdmafec_initialize(bd_t *bis);
|
||||
int mcffec_initialize(bd_t *bis);
|
||||
int natsemi_initialize(bd_t *bis);
|
||||
int ns8382x_initialize(bd_t *bis);
|
||||
int rtl8139_initialize(bd_t *bis);
|
||||
int rtl8169_initialize(bd_t *bis);
|
||||
|
@ -60,6 +61,9 @@ int uli526x_initialize(bd_t *bis);
|
|||
static inline int pci_eth_init(bd_t *bis)
|
||||
{
|
||||
int num = 0;
|
||||
#ifdef CONFIG_NATSEMI
|
||||
num += natsemi_initialize(bis);
|
||||
#endif
|
||||
#ifdef CONFIG_NS8382X
|
||||
num += ns8382x_initialize(bis);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue