diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-27 22:25:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-27 22:25:39 +0000 |
commit | ef0751a00264284557874522612da95509e828dd (patch) | |
tree | 963caf63773429b742a670cf2a175ca710090c48 /sys/arch/alpha/isa/pckbd.c | |
parent | 4e3636249abafe45a4830cc8448aa18fc5853660 (diff) |
from netbsd:
The IST_* and IPL_* constants are not bus-specific; don't treat them as such.
Diffstat (limited to 'sys/arch/alpha/isa/pckbd.c')
-rw-r--r-- | sys/arch/alpha/isa/pckbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/isa/pckbd.c b/sys/arch/alpha/isa/pckbd.c index cea8cd5f5de..ab269620ef7 100644 --- a/sys/arch/alpha/isa/pckbd.c +++ b/sys/arch/alpha/isa/pckbd.c @@ -1,4 +1,4 @@ -/* $NetBSD: pckbd.c,v 1.2 1995/11/23 02:37:06 cgd Exp $ */ +/* $NetBSD: pckbd.c,v 1.3 1995/12/24 02:29:35 mycroft Exp $ */ /*- * Copyright (c) 1993, 1994, 1995 Charles Hannum. All rights reserved. @@ -348,7 +348,7 @@ pckbdattach(parent, self, aux) pckbd_pio_arg = ida->ida_pioarg; /* XXX */ sc->sc_ih = ISA_INTR_ESTABLISH(pckbd_intr_fns, pckbd_intr_arg, - ida->ida_irq[0], ISA_IST_EDGE, ISA_IPL_TTY, pckbdintr, sc); + ida->ida_irq[0], IST_EDGE, IPL_TTY, pckbdintr, sc); #if NWSC printf("\n"); wscattach_input(self, self, pccngetc, pccnpollc); |