Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/i386 Add Rio 500 device.



details:   https://anonhg.NetBSD.org/src/rev/7bc64ea45306
branches:  trunk
changeset: 484906:7bc64ea45306
user:      augustss <augustss%NetBSD.org@localhost>
date:      Fri Apr 14 14:44:49 2000 +0000

description:
Add Rio 500 device.

diffstat:

 sys/arch/i386/conf/GENERIC |  7 +++++--
 sys/arch/i386/i386/conf.c  |  6 +++++-
 2 files changed, 10 insertions(+), 3 deletions(-)

diffs (61 lines):

diff -r 4f8016c49bdf -r 7bc64ea45306 sys/arch/i386/conf/GENERIC
--- a/sys/arch/i386/conf/GENERIC        Fri Apr 14 14:42:29 2000 +0000
+++ b/sys/arch/i386/conf/GENERIC        Fri Apr 14 14:44:49 2000 +0000
@@ -1,11 +1,11 @@
-#      $NetBSD: GENERIC,v 1.323 2000/04/13 11:20:06 joda Exp $
+#      $NetBSD: GENERIC,v 1.324 2000/04/14 14:46:17 augustss Exp $
 #
 #      GENERIC -- everything that's currently supported
 #
 
 include "arch/i386/conf/std.i386"
 
-#ident                 "GENERIC-$Revision: 1.323 $"
+#ident                 "GENERIC-$Revision: 1.324 $"
 
 maxusers       32              # estimated number of users
 
@@ -641,6 +641,9 @@
 # Prolofic PL2301/PL2302 host-to-host adapter
 upl*   at uhub? port ?
 
+# Diamond Multimedia Rio 500
+urio*  at uhub? port ?
+
 # USB Handspring Visor
 uvisor*        at uhub? port ?
 ucom*  at uvisor?
diff -r 4f8016c49bdf -r 7bc64ea45306 sys/arch/i386/i386/conf.c
--- a/sys/arch/i386/i386/conf.c Fri Apr 14 14:42:29 2000 +0000
+++ b/sys/arch/i386/i386/conf.c Fri Apr 14 14:44:49 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.120 2000/03/16 14:53:29 ad Exp $    */
+/*     $NetBSD: conf.c,v 1.121 2000/04/14 14:44:49 augustss Exp $      */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -219,6 +219,8 @@
 cdev_decl(ulpt);
 #include "ucom.h"
 cdev_decl(ucom);
+#include "urio.h"
+cdev_decl(urio);
 #include "vcoda.h"
 cdev_decl(vc_nb_);
 
@@ -386,6 +388,7 @@
        cdev_lm78_init(NLM, lm),        /* 67: LM7[89] */
        cdev_vmegen_init(NVMEGENERIC, vmegeneric), /* 68: generic VME access */
        cdev_disk_init(NCA, ca),        /* 69: Compaq array */
+       cdev_usbdev_init(NURIO,urio),   /* 70: Diamond Rio 500 */
 };
 int    nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);
 
@@ -497,6 +500,7 @@
        /* 67 */        NODEV,
        /* 68 */        NODEV,
        /* 69 */        19,
+       /* 70 */        NODEV,
 };
 
 /*



Home | Main Index | Thread Index | Old Index