Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/alpha/alpha Add Cyclades Y and Z multiport serial a...



details:   https://anonhg.NetBSD.org/src/rev/96adb999df7b
branches:  trunk
changeset: 486799:96adb999df7b
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sun May 28 23:05:19 2000 +0000

description:
Add Cyclades Y and Z multiport serial adapters.

diffstat:

 sys/arch/alpha/alpha/conf.c |  13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diffs (48 lines):

diff -r 61d010d7937e -r 96adb999df7b sys/arch/alpha/alpha/conf.c
--- a/sys/arch/alpha/alpha/conf.c       Sun May 28 22:53:49 2000 +0000
+++ b/sys/arch/alpha/alpha/conf.c       Sun May 28 23:05:19 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: conf.c,v 1.46 2000/04/28 13:50:25 ad Exp $ */
+/* $NetBSD: conf.c,v 1.47 2000/05/28 23:05:19 thorpej 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.46 2000/04/28 13:50:25 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: conf.c,v 1.47 2000/05/28 23:05:19 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -166,6 +166,11 @@
 #include "scc.h"
 #include "zstty.h"
 
+#include "cy.h"
+cdev_decl(cy);
+#include "cz.h"
+cdev_decl(cztty);
+
 #include "se.h"
 #include "rnd.h"
 
@@ -326,6 +331,8 @@
        cdev_tty_init(NUCOM, ucom),     /* 57: USB tty */
        cdev_ses_init(NSES,ses),        /* 58: SCSI SES/SAF-TE */
        cdev_disk_init(NCA,ca),         /* 59: Compaq array */
+       cdev_tty_init(NCY,cy),          /* 60: Cyclades Cyclom-Y serial */
+       cdev_tty_init(NCZ,cztty),       /* 61: Cyclades-Z serial */
 };
 int    nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]);
 
@@ -427,6 +434,8 @@
        /* 57 */        NODEV,
        /* 58 */        NODEV,
        /* 59 */        17,
+       /* 60 */        NODEV,
+       /* 61 */        NODEV,
 };
 
 /*



Home | Main Index | Thread Index | Old Index