diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-10-22 23:47:51 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-11-09 21:38:03 -0800 |
commit | a9bec96d6359ac9f90a852962bf3040cad9e0256 (patch) | |
tree | 5b35fe86d97779beec933cb64331b374ce60f38d /include | |
parent | 0e8454e990385a58f708c2fc26d31ac041c7a6c5 (diff) | |
download | u-boot-imx-a9bec96d6359ac9f90a852962bf3040cad9e0256.zip u-boot-imx-a9bec96d6359ac9f90a852962bf3040cad9e0256.tar.gz u-boot-imx-a9bec96d6359ac9f90a852962bf3040cad9e0256.tar.bz2 |
Moved initialization of MPC8220 FEC to cpu_eth_init()
Removed initialization of the driver 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 3b11961..55183e8 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -56,6 +56,7 @@ int mcdmafec_initialize(bd_t *bis); int mcffec_initialize(bd_t *bis); int mpc512x_fec_initialize(bd_t *bis); int mpc5xxx_fec_initialize(bd_t *bis); +int mpc8220_fec_initialize(bd_t *bis); int natsemi_initialize(bd_t *bis); int npe_initialize(bd_t *bis); int ns8382x_initialize(bd_t *bis); |