diff options
| author | Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> | 2008-06-09 23:37:44 +0900 | 
|---|---|---|
| committer | Ben Warren <biggerbadderben@gmail.com> | 2008-06-09 23:21:05 -0700 | 
| commit | 3b904ccb93c3196727e2e9870cb1df903cab19ad (patch) | |
| tree | cdba708c7c336b6a20c22a392a7160e21cd538e4 /drivers/net/ns7520_eth.c | |
| parent | e44f3ea4e801d37ef293284cb57b9637382f211a (diff) | |
| download | olio-uboot-2014.01-3b904ccb93c3196727e2e9870cb1df903cab19ad.tar.xz olio-uboot-2014.01-3b904ccb93c3196727e2e9870cb1df903cab19ad.zip | |
net: Conditional COBJS inclusion of network drivers
Replace COBJS-y with appropriate driver config names.
Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'drivers/net/ns7520_eth.c')
| -rw-r--r-- | drivers/net/ns7520_eth.c | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/drivers/net/ns7520_eth.c b/drivers/net/ns7520_eth.c index a5a20dfd7..37411dfeb 100644 --- a/drivers/net/ns7520_eth.c +++ b/drivers/net/ns7520_eth.c @@ -15,8 +15,6 @@  #include <common.h> -#if defined(CONFIG_DRIVER_NS7520_ETHERNET) -  #include <net.h>		/* NetSendPacket */  #include <asm/arch/netarm_registers.h>  #include <asm/arch/netarm_dma_module.h> @@ -846,14 +844,11 @@ extern int ns7520_miiphy_write(char *devname, unsigned char const addr,  	return (ret);  }  #endif				/* defined(CONFIG_MII) */ -#endif				/* CONFIG_DRIVER_NS7520_ETHERNET */  int ns7520_miiphy_initialize(bd_t *bis)  { -#if defined(CONFIG_DRIVER_NS7520_ETHERNET)  #if defined(CONFIG_MII)  	miiphy_register("ns7520phy", ns7520_miiphy_read, ns7520_miiphy_write);  #endif -#endif  	return 0;  } |