mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
Added a cpu_eth_init() function to cpu/mcf547x_8x directory and removed code from net/eth.c Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
b5710d9974
commit
b31da88b9c
3 changed files with 10 additions and 5 deletions
|
@ -71,7 +71,6 @@ extern int uec_initialize(int);
|
|||
extern int bfin_EMAC_initialize(bd_t *);
|
||||
extern int greth_initialize(bd_t *);
|
||||
extern int mcffec_initialize(bd_t*);
|
||||
extern int mcdmafec_initialize(bd_t*);
|
||||
extern int at91sam9_eth_initialize(bd_t *);
|
||||
|
||||
#ifdef CONFIG_API
|
||||
|
@ -275,9 +274,6 @@ int eth_initialize(bd_t *bis)
|
|||
#if defined(CONFIG_MCFFEC)
|
||||
mcffec_initialize(bis);
|
||||
#endif
|
||||
#if defined(CONFIG_FSLDMAFEC)
|
||||
mcdmafec_initialize(bis);
|
||||
#endif
|
||||
#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \
|
||||
defined(CONFIG_AT91SAM9263)
|
||||
at91sam9_eth_initialize(bis);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue