Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys remove SES driver



details:   https://anonhg.NetBSD.org/src/rev/5a00c0219b74
branches:  trunk
changeset: 482830:5a00c0219b74
user:      mjacob <mjacob%NetBSD.org@localhost>
date:      Tue Feb 22 17:43:57 2000 +0000

description:
remove SES driver

diffstat:

 sys/arch/alpha/alpha/conf.c |  8 ++------
 sys/arch/alpha/conf/ALPHA   |  3 +--
 sys/dev/scsipi/files.scsipi |  6 +-----
 sys/sys/conf.h              |  3 +--
 4 files changed, 5 insertions(+), 15 deletions(-)

diffs (90 lines):

diff -r a33c73a9feb1 -r 5a00c0219b74 sys/arch/alpha/alpha/conf.c
--- a/sys/arch/alpha/alpha/conf.c       Tue Feb 22 17:30:49 2000 +0000
+++ b/sys/arch/alpha/alpha/conf.c       Tue Feb 22 17:43:57 2000 +0000
@@ -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(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 @@
 #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]);
 
diff -r a33c73a9feb1 -r 5a00c0219b74 sys/arch/alpha/conf/ALPHA
--- a/sys/arch/alpha/conf/ALPHA Tue Feb 22 17:30:49 2000 +0000
+++ b/sys/arch/alpha/conf/ALPHA Tue Feb 22 17:43:57 2000 +0000
@@ -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 @@
 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
diff -r a33c73a9feb1 -r 5a00c0219b74 sys/dev/scsipi/files.scsipi
--- a/sys/dev/scsipi/files.scsipi       Tue Feb 22 17:30:49 2000 +0000
+++ b/sys/dev/scsipi/files.scsipi       Tue Feb 22 17:43:57 2000 +0000
@@ -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 @@
 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
diff -r a33c73a9feb1 -r 5a00c0219b74 sys/sys/conf.h
--- a/sys/sys/conf.h    Tue Feb 22 17:30:49 2000 +0000
+++ b/sys/sys/conf.h    Tue Feb 22 17:43:57 2000 +0000
@@ -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 @@
 #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), \



Home | Main Index | Thread Index | Old Index