diff options
| author | Ben Warren <biggerbadderben@gmail.com> | 2008-07-11 23:42:19 -0700 | 
|---|---|---|
| committer | Ben Warren <biggerbadderben@gmail.com> | 2008-08-26 22:17:45 -0700 | 
| commit | 65d3d99c28dc363d15eaee78225ff643df499b97 (patch) | |
| tree | f22c8f0166cc33a8ce1be97ee17178ba7700e685 /net/eth.c | |
| parent | 914947313a710f5dcf06beaf7f2aa24f1ebcce4f (diff) | |
| download | olio-uboot-2014.01-65d3d99c28dc363d15eaee78225ff643df499b97.tar.xz olio-uboot-2014.01-65d3d99c28dc363d15eaee78225ff643df499b97.zip | |
Moved initialization of ULI526X Ethernet driver to board code.
The only board using this driver is the Freescale MPC8610HPCD board.
Removed initialization for the driver 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
| @@ -65,7 +65,6 @@ extern int rtl8169_initialize(bd_t*);  extern int scc_initialize(bd_t*);  extern int skge_initialize(bd_t*);  extern int tsi108_eth_initialize(bd_t*); -extern int uli526x_initialize(bd_t *);  extern int npe_initialize(bd_t *);  extern int uec_initialize(int);  extern int at91sam9_eth_initialize(bd_t *); @@ -253,9 +252,6 @@ int eth_initialize(bd_t *bis)  #if defined(CONFIG_TSI108_ETH)  	tsi108_eth_initialize(bis);  #endif -#if defined(CONFIG_ULI526X) -	uli526x_initialize(bis); -#endif  #if defined(CONFIG_RTL8139)  	rtl8139_initialize(bis);  #endif |