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 Hook the iop device in.



details:   https://anonhg.NetBSD.org/src/rev/3f0666932b88
branches:  trunk
changeset: 500006:3f0666932b88
user:      ad <ad%NetBSD.org@localhost>
date:      Sun Dec 03 13:19:07 2000 +0000

description:
Hook the iop device in.

diffstat:

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

diffs (34 lines):

diff -r affebceff00f -r 3f0666932b88 sys/arch/i386/i386/conf.c
--- a/sys/arch/i386/i386/conf.c Sun Dec 03 13:17:03 2000 +0000
+++ b/sys/arch/i386/i386/conf.c Sun Dec 03 13:19:07 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.132 2000/11/26 17:44:10 ad Exp $    */
+/*     $NetBSD: conf.c,v 1.133 2000/12/03 13:19:07 ad Exp $    */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -298,6 +298,8 @@
 
 #include "vmegeneric.h"
 cdev_decl(vmegeneric);
+#include "iop.h"
+cdev_decl(iop);
 
 struct cdevsw  cdevsw[] =
 {
@@ -393,6 +395,7 @@
        cdev_tty_init(NCZ,cztty),       /* 73: Cyclades-Z serial port */
        cdev_ses_init(NSES,ses),        /* 74: SCSI SES/SAF-TE */
        cdev_ugen_init(NUSCANNER,uscanner),/* 75: USB scanner */
+       cdev__oci_init(NIOP,iop),       /* 76: I2O IOP control interface */
 };
 int    nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);
 
@@ -510,6 +513,7 @@
        /* 73 */        NODEV,
        /* 74 */        NODEV,
        /* 75 */        NODEV,
+       /* 76 */        NODEV
 };
 
 /*



Home | Main Index | Thread Index | Old Index