diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-09-05 01:55:22 -0400 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-11-09 21:38:02 -0800 |
commit | cc94074ecac1885d18ddb683eb934b3c0268aa5b (patch) | |
tree | c0a836f88c95358e0154702b7037b7a11df4b29e /include | |
parent | f2a7806fc23e82d30c8548911369e0c530607354 (diff) | |
download | u-boot-cc94074ecac1885d18ddb683eb934b3c0268aa5b.zip u-boot-cc94074ecac1885d18ddb683eb934b3c0268aa5b.tar.gz u-boot-cc94074ecac1885d18ddb683eb934b3c0268aa5b.tar.bz2 |
Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
Also, removed the driver initialization from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/netdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netdev.h b/include/netdev.h index 87d578c..3739980 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -55,6 +55,7 @@ int mcffec_initialize(bd_t *bis); int mpc512x_fec_initialize(bd_t *bis); int mpc5xxx_fec_initialize(bd_t *bis); int natsemi_initialize(bd_t *bis); +int npe_initialize(bd_t *bis); int ns8382x_initialize(bd_t *bis); int pcnet_initialize(bd_t *bis); int plb2800_eth_initialize(bd_t *bis); |