remove SES driver

This commit is contained in:
mjacob 2000-02-22 17:43:57 +00:00
parent b2d85b262c
commit 64fa8aa0d6
4 changed files with 5 additions and 15 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.43 2000/01/25 08:31:56 augustss Exp $ */
/* $NetBSD: conf.c,v 1.44 2000/02/22 17:46:49 mjacob Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@ -37,7 +37,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: conf.c,v 1.43 2000/01/25 08:31:56 augustss Exp $");
__KERNEL_RCSID(0, "$NetBSD: conf.c,v 1.44 2000/02/22 17:46:49 mjacob Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -142,8 +142,6 @@ cdev_decl(ms);
cdev_decl(lpt);
cdev_decl(md);
cdev_decl(raid);
#include "ses.h"
cdev_decl(ses);
#include "ss.h"
cdev_decl(ss);
#include "uk.h"
@ -321,8 +319,6 @@ struct cdevsw cdevsw[] =
#endif
cdev_mouse_init(NWSMUX, wsmux), /* 56: ws multiplexor */
cdev_tty_init(NUCOM, ucom), /* 57: USB tty */
cdev_ses_init(NSES,ses), /* 58: SCSI SES/SAF-TE */
};
int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]);

View File

@ -1,4 +1,4 @@
# $NetBSD: ALPHA,v 1.113 2000/01/25 08:31:57 augustss Exp $
# $NetBSD: ALPHA,v 1.114 2000/02/22 17:45:05 mjacob Exp $
#
# Alpha kernel with all the options you'd want, and more.
@ -343,7 +343,6 @@ cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
ch* at scsibus? target ? lun ? # SCSI autochangers
sd* at scsibus? target ? lun ? # SCSI disk drives
se* at scsibus? target ? lun ? # Cabletron SCSI<->Ethernet
ses* at scsibus? target ? lun ? # SCSI SES/SAF-TE
ss* at scsibus? target ? lun ? # SCSI scanners
st* at scsibus? target ? lun ? # SCSI tape drives
uk* at scsibus? target ? lun ? # SCSI unknown

View File

@ -1,4 +1,4 @@
# $NetBSD: files.scsipi,v 1.22 2000/01/20 16:07:43 mjacob Exp $
# $NetBSD: files.scsipi,v 1.23 2000/02/22 17:43:57 mjacob Exp $
#
# Config file and device description for machine-independent SCSI code.
# Included by ports that need it. Ports that use it must provide
@ -49,10 +49,6 @@ device st: tape
attach st at scsibus
file dev/scsipi/st.c st needs-flag
device ses
attach ses at scsibus
file dev/scsipi/ses.c ses needs-flag
device ss
attach ss at scsibus
file dev/scsipi/ss.c ss needs-flag

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.h,v 1.70 2000/01/28 17:26:03 augustss Exp $ */
/* $NetBSD: conf.h,v 1.71 2000/02/22 17:48:10 mjacob Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -293,7 +293,6 @@ extern struct cdevsw cdevsw[];
#define cdev_uk_init(c,n) cdev__oci_init(c,n)
#define cdev_scsibus_init(c,n) cdev__oci_init(c,n)
#define cdev_se_init(c,n) cdev__oci_init(c,n)
#define cdev_ses_init(c,n) cdev__oci_init(c,n)
#define cdev_usb_init(c,n) { \
dev_init(c,n,open), dev_init(c,n,close), dev_init(c,n,read), \