ne2000 driver: change #ifdef to Makefile conditional compilation

Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
Wolfgang Denk 2008-03-25 22:50:41 +01:00
parent e710185aae
commit e0a6140dd3
2 changed files with 1 additions and 4 deletions

View File

@ -41,7 +41,7 @@ COBJS-y += lan91c96.o
COBJS-y += macb.o COBJS-y += macb.o
COBJS-y += mcffec.o COBJS-y += mcffec.o
COBJS-y += natsemi.o COBJS-y += natsemi.o
COBJS-y += ne2000.o COBJS-$(CONFIG_DRIVER_NE2000) += ne2000.o
COBJS-y += netarm_eth.o COBJS-y += netarm_eth.o
COBJS-y += netconsole.o COBJS-y += netconsole.o
COBJS-y += ns7520_eth.o COBJS-y += ns7520_eth.o

View File

@ -80,8 +80,6 @@ Add SNMP
#include <net.h> #include <net.h>
#include <malloc.h> #include <malloc.h>
#ifdef CONFIG_DRIVER_NE2000
#define mdelay(n) udelay((n)*1000) #define mdelay(n) udelay((n)*1000)
/* forward definition of function used for the uboot interface */ /* forward definition of function used for the uboot interface */
void uboot_push_packet_len(int len); void uboot_push_packet_len(int len);
@ -851,4 +849,3 @@ int eth_send(volatile void *packet, int length) {
} }
return 0; return 0;
} }
#endif