diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:07:16 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:17 -0700 |
commit | b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed (patch) | |
tree | 9dde8a5383d117f071e6153efe95350f07401079 /include/netdev.h | |
parent | 19403633dd70333893c2da7926a1d0dcd6dab7d8 (diff) | |
download | u-boot-imx-b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed.zip u-boot-imx-b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed.tar.gz u-boot-imx-b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed.tar.bz2 |
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>
Diffstat (limited to 'include/netdev.h')
-rw-r--r-- | include/netdev.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/netdev.h b/include/netdev.h index 97eff7a..c5b0815 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -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 |