Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/i386/i386 Add SCSI Enclosure Services at cdev minor...



details:   https://anonhg.NetBSD.org/src/rev/34f94b01dd4a
branches:  trunk
changeset: 486459:34f94b01dd4a
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Mon May 22 16:58:20 2000 +0000

description:
Add SCSI Enclosure Services at cdev minor 74.

diffstat:

 sys/arch/i386/i386/conf.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (34 lines):

diff -r 97a153ed2f10 -r 34f94b01dd4a sys/arch/i386/i386/conf.c
--- a/sys/arch/i386/i386/conf.c Mon May 22 16:52:03 2000 +0000
+++ b/sys/arch/i386/i386/conf.c Mon May 22 16:58:20 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.125 2000/05/17 18:08:03 thorpej Exp $       */
+/*     $NetBSD: conf.c,v 1.126 2000/05/22 16:58:20 thorpej Exp $       */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -172,6 +172,8 @@
 cdev_decl(pc);
 cdev_decl(sd);
 cdev_decl(st);
+#include "ses.h"
+cdev_decl(ses);
 #include "ss.h"
 cdev_decl(ss);
 #include "uk.h"
@@ -399,6 +401,7 @@
        cdev_bktr_init(NBKTR, bktr),    /* 71: Bt848 video capture device */
        cdev_viaenv_init(NVIAENV, viaenv_),/* 72: VIA VT82C686A hwmon */
        cdev_tty_init(NCZ,cztty),       /* 73: Cyclades-Z serial port */
+       cdev_ses_init(NSES,ses),        /* 74: SCSI SES/SAF-TE */
 };
 int    nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);
 
@@ -514,6 +517,7 @@
        /* 71 */        NODEV,
        /* 72 */        NODEV,
        /* 73 */        NODEV,
+       /* 74 */        NODEV,
 };
 
 /*



Home | Main Index | Thread Index | Old Index