diff options
| author | Ben Warren <biggerbadderben@gmail.com> | 2008-07-09 01:04:19 -0700 | 
|---|---|---|
| committer | Ben Warren <biggerbadderben@gmail.com> | 2008-08-26 22:17:24 -0700 | 
| commit | fc363ce35408f348cacced68505f3747a53e3d7c (patch) | |
| tree | b18d4d0725193bbdeb8385461d591f7a7ed3fd58 /net/eth.c | |
| parent | 86882b80771309bceb11c6accfd7f6f90ade8bfc (diff) | |
| download | olio-uboot-2014.01-fc363ce35408f348cacced68505f3747a53e3d7c.tar.xz olio-uboot-2014.01-fc363ce35408f348cacced68505f3747a53e3d7c.zip | |
Moved initialization of GRETH Ethernet driver to CPU directory
Added a cpu_eth_init() function to leon2/leon3 CPU directories and
removed code from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'net/eth.c')
| -rw-r--r-- | net/eth.c | 4 | 
1 files changed, 0 insertions, 4 deletions
| @@ -69,7 +69,6 @@ extern int uli526x_initialize(bd_t *);  extern int npe_initialize(bd_t *);  extern int uec_initialize(int);  extern int bfin_EMAC_initialize(bd_t *); -extern int greth_initialize(bd_t *);  extern int at91sam9_eth_initialize(bd_t *);  #ifdef CONFIG_API @@ -267,9 +266,6 @@ int eth_initialize(bd_t *bis)  #if defined(CONFIG_BF537)  	bfin_EMAC_initialize(bis);  #endif -#if defined(CONFIG_GRETH) -	greth_initialize(bis); -#endif  #if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \      defined(CONFIG_AT91SAM9263)  	at91sam9_eth_initialize(bis); |