diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-12-04 21:12:42 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-12-04 21:12:42 +0000 |
commit | 849ca574ebf2c72e17af973fcf377221c5cffe8a (patch) | |
tree | 873c542c194361321172907776764fe70da6f4a6 | |
parent | b57948d956e03e86ad137b6a3c991b61cdc1a7f7 (diff) |
remove direct entry points for bwtwo, cgfourteen, cgsix, cgthree, and tcx
-rw-r--r-- | sys/arch/sparc64/sparc64/conf.c | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/sys/arch/sparc64/sparc64/conf.c b/sys/arch/sparc64/sparc64/conf.c index 4185324c8ea..32b393845bf 100644 --- a/sys/arch/sparc64/sparc64/conf.c +++ b/sys/arch/sparc64/sparc64/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.13 2001/12/04 20:13:47 jason Exp $ */ +/* $OpenBSD: conf.c,v 1.14 2001/12/04 21:12:41 jason Exp $ */ /* $NetBSD: conf.c,v 1.17 2001/03/26 12:33:26 lukem Exp $ */ /* @@ -99,19 +99,9 @@ #ifdef notyet #include "fdc.h" /* has NFDC and NFD; see files.sparc */ -#include "bwtwo.h" -#include "cgthree.h" -#include "cgsix.h" -#include "tcx.h" -#include "cgfourteen.h" #endif #define NFD 0 #define NFDC 0 -#define NBWTWO 0 -#define NCGTHREE 0 -#define NCGSIX 0 -#define NTCX 0 -#define NCGFOURTEEN 0 #include "wsdisplay.h" @@ -191,7 +181,7 @@ struct cdevsw cdevsw[] = cdev_fd_init(1,filedesc), /* 24: file descriptor pseudo-device */ cdev_notdef(), /* 25 */ cdev_disk_init(NWD,wd), /* 26: IDE disk */ - cdev_fb_init(NBWTWO,bwtwo), /* 27: /dev/bwtwo */ + cdev_notdef(), /* 27 */ cdev_notdef(), /* 28: Systech VPC-2200 versatec/centronics */ cdev_mouse_init(NKBD+NSUNKBD,kbd), /* 29: /dev/kbd */ cdev_notdef(), /* 30: Xylogics tape */ @@ -203,7 +193,7 @@ struct cdevsw cdevsw[] = cdev_tty_init(NCOM,com), /* 36: NS16x50 compatible ports */ cdev_notdef(), /* 37 */ cdev_notdef(), /* 38 */ - cdev_notdef(), /* 39: /dev/cgfour */ + cdev_notdef(), /* 39 */ cdev_notdef(), /* 40 */ cdev_notdef(), /* 41 */ cdev_notdef(), /* 42: SMD disk */ @@ -223,7 +213,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 52 */ cdev_notdef(), /* 53 */ cdev_disk_init(NFD,fd), /* 54: floppy disk */ - cdev_fb_init(NCGTHREE,cgthree), /* 55: /dev/cgthree */ + cdev_notdef(), /* 55 */ cdev_notdef(), /* 56 */ cdev_notdef(), /* 57 */ cdev_disk_init(NCD,cd), /* 58: SCSI CD-ROM */ @@ -235,7 +225,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 64: /dev/cgeight */ cdev_notdef(), /* 65 */ cdev_notdef(), /* 66 */ - cdev_fb_init(NCGSIX,cgsix), /* 67: /dev/cgsix */ + cdev_notdef(), /* 67 */ cdev_notdef(), /* 68 */ cdev_audio_init(NAUDIO,audio), /* 69: /dev/audio */ cdev_openprom_init(1,openprom), /* 70: /dev/openprom */ @@ -268,7 +258,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 96 */ cdev_notdef(), /* 97 */ cdev_notdef(), /* 98 */ - cdev_fb_init(NCGFOURTEEN,cgfourteen), /* 99: /dev/cgfourteen */ + cdev_notdef(), /* 99 */ cdev_notdef(), /* 100 */ cdev_notdef(), /* 101 */ cdev_notdef(), /* 102 */ @@ -282,7 +272,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), #endif cdev_notdef(), /* 108 */ - cdev_fb_init(NTCX,tcx), /* 109: /dev/tcx */ + cdev_notdef(), /* 109 */ cdev_disk_init(NVND,vnd), /* 110: vnode disk driver */ cdev_bpftun_init(NTUN,tun), /* 111: network tunnel */ cdev_lkm_init(NLKM,lkm), /* 112: loadable module driver */ |