Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/arch/amiga/amiga Pull up revision 1.66 (requested b...



details:   https://anonhg.NetBSD.org/src/rev/c60c876e5070
branches:  netbsd-1-6
changeset: 527982:c60c876e5070
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Jun 18 15:05:30 2002 +0000

description:
Pull up revision 1.66 (requested by lukem in ticket #315):
Add clockctl device (at major # 55).

diffstat:

 sys/arch/amiga/amiga/conf.c |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (36 lines):

diff -r 3508665d9b83 -r c60c876e5070 sys/arch/amiga/amiga/conf.c
--- a/sys/arch/amiga/amiga/conf.c       Tue Jun 18 15:05:21 2002 +0000
+++ b/sys/arch/amiga/amiga/conf.c       Tue Jun 18 15:05:30 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.65 2002/03/16 16:55:52 martin Exp $ */
+/*     $NetBSD: conf.c,v 1.65.6.1 2002/06/18 15:05:30 lukem Exp $      */
 
 /*-
  * Copyright (c) 1991 The Regents of the University of California.
@@ -38,7 +38,7 @@
 #include "opt_compat_svr4.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: conf.c,v 1.65 2002/03/16 16:55:52 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: conf.c,v 1.65.6.1 2002/06/18 15:05:30 lukem Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -133,6 +133,9 @@
 cdev_decl(isdnbchan);
 cdev_decl(isdntel);
 
+#include "clockctl.h"
+cdev_decl(clockctl);
+
 struct cdevsw  cdevsw[] =
 {
        cdev_cn_init(1,cn),             /* 0: virtual console */
@@ -192,6 +195,7 @@
                            wsdisplay), /* 53: display */
 
        cdev_mouse_init(NWSKBD,wskbd),  /* 54: keyboard */
+       cdev_clockctl_init(NCLOCKCTL, clockctl),/* 55: clockctl pseudo device */
 };
 int    nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);
 



Home | Main Index | Thread Index | Old Index