summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed
diff options
context:
space:
mode:
authormdodd <mdodd@FreeBSD.org>1999-11-20 09:28:01 +0000
committermdodd <mdodd@FreeBSD.org>1999-11-20 09:28:01 +0000
commitb17c96564d10656e0e30a9637f98871157255e28 (patch)
treecb300a7cbdbf92cf6a57ea63446a165732f55ac2 /sys/dev/ed
parent9d91943c0f1210ed04c646aedd33c45fdc6a4a78 (diff)
downloadFreeBSD-src-b17c96564d10656e0e30a9637f98871157255e28.zip
FreeBSD-src-b17c96564d10656e0e30a9637f98871157255e28.tar.gz
I forgot to remove the "NCARD == 0" hacks that kept this driver
from blowing up on PCMCIA systems. The hack isn't needed anymore. Reminded by: Blaz Zupan <blaz@gold.amis.net>
Diffstat (limited to 'sys/dev/ed')
-rw-r--r--sys/dev/ed/if_ed_isa.c4
-rw-r--r--sys/dev/ed/if_ed_pci.c4
2 files changed, 0 insertions, 8 deletions
diff --git a/sys/dev/ed/if_ed_isa.c b/sys/dev/ed/if_ed_isa.c
index c504aa6..8894fda 100644
--- a/sys/dev/ed/if_ed_isa.c
+++ b/sys/dev/ed/if_ed_isa.c
@@ -27,9 +27,6 @@
* $FreeBSD$
*/
-#include "card.h"
-#if NCARD == 0
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
@@ -157,4 +154,3 @@ static driver_t ed_isa_driver = {
static devclass_t ed_isa_devclass;
DRIVER_MODULE(ed, isa, ed_isa_driver, ed_isa_devclass, 0, 0);
-#endif
diff --git a/sys/dev/ed/if_ed_pci.c b/sys/dev/ed/if_ed_pci.c
index d5bfcfc..0a4b0cb 100644
--- a/sys/dev/ed/if_ed_pci.c
+++ b/sys/dev/ed/if_ed_pci.c
@@ -20,9 +20,6 @@
* $FreeBSD$
*/
-#include "card.h"
-#if NCARD == 0
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
@@ -126,4 +123,3 @@ static driver_t ed_pci_driver = {
static devclass_t ed_devclass;
DRIVER_MODULE(ed, pci, ed_pci_driver, ed_devclass, 0, 0);
-#endif
OpenPOWER on IntegriCloud