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>
This commit is contained in:
Matthew N. Dodd 1999-11-20 09:28:01 +00:00
parent 2cb5caa767
commit cb5d0c333f
2 changed files with 0 additions and 8 deletions

View File

@ -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

View File

@ -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