Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/arch/alpha/alpha Pull up 1.22 -> 1.23.



details:   https://anonhg.NetBSD.org/src/rev/cde680990d1c
branches:  netbsd-1-4
changeset: 468310:cde680990d1c
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Fri Apr 16 23:24:57 1999 +0000

description:
Pull up 1.22 -> 1.23.

diffstat:

 sys/arch/alpha/alpha/dec_kn8ae.c |  29 ++++++++++++++++++-----------
 1 files changed, 18 insertions(+), 11 deletions(-)

diffs (61 lines):

diff -r a2335fc44085 -r cde680990d1c sys/arch/alpha/alpha/dec_kn8ae.c
--- a/sys/arch/alpha/alpha/dec_kn8ae.c  Fri Apr 16 23:22:10 1999 +0000
+++ b/sys/arch/alpha/alpha/dec_kn8ae.c  Fri Apr 16 23:24:57 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dec_kn8ae.c,v 1.22 1999/02/13 02:41:41 thorpej Exp $ */
+/* $NetBSD: dec_kn8ae.c,v 1.22.2.1 1999/04/16 23:24:57 thorpej Exp $ */
 
 /*
  * Copyright (c) 1997 by Matthew Jacob
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: dec_kn8ae.c,v 1.22 1999/02/13 02:41:41 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dec_kn8ae.c,v 1.22.2.1 1999/04/16 23:24:57 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -66,6 +66,7 @@
 
 
 void dec_kn8ae_init __P((void));
+void dec_kn8ae_cons_init __P((void));
 static void dec_kn8ae_device_register __P((struct device *, void *));
 
 static void dec_kn8ae_mcheck_handler
@@ -91,19 +92,25 @@
        }
 
        platform.iobus = "tlsb";
+       platform.cons_init = dec_kn8ae_cons_init;
        platform.device_register = dec_kn8ae_device_register;
        platform.mcheck_handler = dec_kn8ae_mcheck_handler;
 }
 
-/*
- * dec_kn8ae_cons_init- not needed right now.
- *
- * Info to retain:
- *
- *     The AXP 8X00 seems to encode the
- *     type of console in the ctb_type field,
- *     not the ctb_term_type field.
- */
+void
+dec_kn8ae_cons_init()
+{
+
+       /*
+        * Info to retain:
+        *
+        *      The AXP 8X00 seems to encode the
+        *      type of console in the ctb_type field,
+        *      not the ctb_term_type field.
+        *
+        *      XXX Not Type 4 CTB?
+        */
+}
 
 /* #define     BDEBUG  1 */
 static void



Home | Main Index | Thread Index | Old Index