diff options
Diffstat (limited to 'board/esd')
| -rw-r--r-- | board/esd/adciop/adciop.c | 6 | ||||
| -rw-r--r-- | board/esd/cpci5200/cpci5200.c | 6 | ||||
| -rw-r--r-- | board/esd/dasa_sim/dasa_sim.c | 1 | ||||
| -rw-r--r-- | board/esd/mecp5200/mecp5200.c | 6 | ||||
| -rw-r--r-- | board/esd/pf5200/pf5200.c | 6 | 
5 files changed, 25 insertions, 0 deletions
| diff --git a/board/esd/adciop/adciop.c b/board/esd/adciop/adciop.c index 0f655b78a..63aaf2c7a 100644 --- a/board/esd/adciop/adciop.c +++ b/board/esd/adciop/adciop.c @@ -22,6 +22,7 @@   */  #include <common.h> +#include <netdev.h>  #include "adciop.h"  /* ------------------------------------------------------------------------- */ @@ -95,3 +96,8 @@ int testdram (void)  }  /* ------------------------------------------------------------------------- */ + +int board_eth_init(bd_t *bis) +{ +	return pci_eth_init(bis); +} diff --git a/board/esd/cpci5200/cpci5200.c b/board/esd/cpci5200/cpci5200.c index 20130acfe..2a42e65de 100644 --- a/board/esd/cpci5200/cpci5200.c +++ b/board/esd/cpci5200/cpci5200.c @@ -32,6 +32,7 @@  #include <mpc5xxx.h>  #include <pci.h>  #include <command.h> +#include <netdev.h>  #include "mt46v16m16-75.h" @@ -259,6 +260,11 @@ void init_ata_reset(void)  	}  } +int board_eth_init(bd_t *bis) +{ +	return pci_eth_init(bis); +} +  int do_writepci(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  {  	unsigned int addr; diff --git a/board/esd/dasa_sim/dasa_sim.c b/board/esd/dasa_sim/dasa_sim.c index 4cc3a2f45..47d6bb3cc 100644 --- a/board/esd/dasa_sim/dasa_sim.c +++ b/board/esd/dasa_sim/dasa_sim.c @@ -22,6 +22,7 @@   */  #include <common.h> +#include <netdev.h>  #include "dasa_sim.h"  /* ------------------------------------------------------------------------- */ diff --git a/board/esd/mecp5200/mecp5200.c b/board/esd/mecp5200/mecp5200.c index 6d776b7a6..ff44abdac 100644 --- a/board/esd/mecp5200/mecp5200.c +++ b/board/esd/mecp5200/mecp5200.c @@ -32,6 +32,7 @@  #include <mpc5xxx.h>  #include <pci.h>  #include <command.h> +#include <netdev.h>  #include "mt46v16m16-75.h" @@ -259,3 +260,8 @@ void init_power_switch(void)  		__asm__ volatile ("sync");  	}  } + +int board_eth_init(bd_t *bis) +{ +	return pci_eth_init(bis); +} diff --git a/board/esd/pf5200/pf5200.c b/board/esd/pf5200/pf5200.c index 7970f8988..c4c0221d0 100644 --- a/board/esd/pf5200/pf5200.c +++ b/board/esd/pf5200/pf5200.c @@ -32,6 +32,7 @@  #include <mpc5xxx.h>  #include <pci.h>  #include <command.h> +#include <netdev.h>  #include "mt46v16m16-75.h" @@ -264,6 +265,11 @@ void init_power_switch(void)  	__asm__ volatile ("sync");  } +int board_eth_init(bd_t *bis) +{ +	return pci_eth_init(bis); +} +  void power_set_reset(int power)  {  	debug("ide_set_reset(%d)\n", power); |