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.16 -> 1.17.



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

description:
Pull up 1.16 -> 1.17.

diffstat:

 sys/arch/alpha/alpha/dec_eb64plus.c |  13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diffs (41 lines):

diff -r 46ac15e265cf -r 2a61941df9e0 sys/arch/alpha/alpha/dec_eb64plus.c
--- a/sys/arch/alpha/alpha/dec_eb64plus.c       Fri Apr 16 23:15:32 1999 +0000
+++ b/sys/arch/alpha/alpha/dec_eb64plus.c       Fri Apr 16 23:18:57 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dec_eb64plus.c,v 1.16 1999/02/13 02:41:41 thorpej Exp $ */
+/* $NetBSD: dec_eb64plus.c,v 1.16.2.1 1999/04/16 23:18:57 thorpej Exp $ */
 
 /*
  * Copyright (c) 1995, 1996, 1997 Carnegie-Mellon University.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: dec_eb64plus.c,v 1.16 1999/02/13 02:41:41 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dec_eb64plus.c,v 1.16.2.1 1999/04/16 23:18:57 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -128,17 +128,18 @@
                }
 
        case 3:
-#if    NPCKBD  > 0
+#if NPCKBD > 0
                /* display console ... */
                /* XXX */
                (void) pckbc_cnattach(&acp->ac_iot, PCKBC_KBD_SLOT);
 
-               if ((ctb->ctb_turboslot & 0xffff) == 0)
+               if (CTB_TURBOSLOT_TYPE(ctb->ctb_turboslot) ==
+                   CTB_TURBOSLOT_TYPE_ISA)
                        isa_display_console(&acp->ac_iot, &acp->ac_memt);
                else
                        pci_display_console(&acp->ac_iot, &acp->ac_memt,
-                           &acp->ac_pc, (ctb->ctb_turboslot >> 8) & 0xff,
-                           ctb->ctb_turboslot & 0xff, 0);
+                           &acp->ac_pc, CTB_TURBOSLOT_BUS(ctb->ctb_turboslot),
+                           CTB_TURBOSLOT_SLOT(ctb->ctb_turboslot), 0);
 #else
                panic("not configured to use display && keyboard console");
 #endif



Home | Main Index | Thread Index | Old Index