diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1998-09-11 09:45:15 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1998-09-11 09:45:15 +0000 |
commit | 0bcc83d874dd14a42c292682cf58ad20482b18a3 (patch) | |
tree | cb82f49dc36b78dcbc6ad9e34d8b8d05abb873e4 /sys/arch/i386 | |
parent | cf8aa276243346a107683be0df4784bc24a38bde (diff) |
Comment the pcmcia cdev entry because the new framework
doesn't use devices (yet).
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/conf.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c index b58290d39ad..dc4990b7aaa 100644 --- a/sys/arch/i386/i386/conf.c +++ b/sys/arch/i386/i386/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.48 1998/08/31 05:16:53 art Exp $ */ +/* $OpenBSD: conf.c,v 1.49 1998/09/11 09:45:14 fgsch Exp $ */ /* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */ /* @@ -152,8 +152,10 @@ cdev_decl(lpt); #include "ch.h" dev_decl(filedesc,open); #include "bpfilter.h" +#if 0 #include "pcmcia.h" cdev_decl(pcmcia); +#endif #include "spkr.h" cdev_decl(spkr); #include "mms.h" @@ -228,7 +230,11 @@ struct cdevsw cdevsw[] = cdev_fd_init(1,filedesc), /* 22: file descriptor pseudo-device */ cdev_bpftun_init(NBPFILTER,bpf),/* 23: Berkeley packet filter */ cdev_disk_init(NACD,acd), /* 24: ATAPI CD-ROM */ +#if 0 cdev_ocis_init(NPCMCIA,pcmcia), /* 25: PCMCIA Bus */ +#else + cdev_notdef(), /* 25 */ +#endif cdev_joy_init(NJOY,joy), /* 26: joystick */ cdev_spkr_init(NSPKR,spkr), /* 27: PC speaker */ cdev_lkm_init(NLKM,lkm), /* 28: loadable module driver */ |