diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-08 03:16:17 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-08 03:16:17 +0000 |
commit | ad2229181528c548830bb38d329e9a7a8fa652d5 (patch) | |
tree | 4a3f48cb2e56c19d9cd8a1184ebfc489e4bc4cd0 /sys/arch/alpha/isa/pms.c | |
parent | dad4eff1f7fe223f168c88f9873e5ddb32f74884 (diff) |
s/pcppi/pckbc/ due to conflict with "real" pcppi and as a step towards
sys/dev/pckbc. Will probably still not coexist with pcppi but now alpha at
least configs. I will come back here anyday and improve.
Diffstat (limited to 'sys/arch/alpha/isa/pms.c')
-rw-r--r-- | sys/arch/alpha/isa/pms.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/alpha/isa/pms.c b/sys/arch/alpha/isa/pms.c index 3251fc71029..ec173574e28 100644 --- a/sys/arch/alpha/isa/pms.c +++ b/sys/arch/alpha/isa/pms.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pms.c,v 1.6 1997/11/06 12:27:03 niklas Exp $ */ +/* $OpenBSD: pms.c,v 1.7 1999/01/08 03:16:15 niklas Exp $ */ /* $NetBSD: pms.c,v 1.7 1996/12/05 01:39:31 cgd Exp $ */ /*- @@ -50,7 +50,7 @@ #include <dev/isa/isavar.h> #include <dev/wscons/wsconsvar.h> #include <dev/wscons/ms.h> -#include <alpha/isa/pcppivar.h> +#include <alpha/isa/pckbcvar.h> #define PMS_DATA 0x0 /* offset for data port, read-write */ #define PMS_CNTRL 0x4 /* offset for control port, write-only */ @@ -187,10 +187,10 @@ pmsprobe(parent, match, aux) #endif void *aux; { - struct pcppi_attach_args *pa = aux; + struct pckbc_attach_args *pa = aux; u_char x; - if (pa->pa_slot != PCPPI_AUX_SLOT) + if (pa->pa_slot != PCKBC_AUX_SLOT) return 0; pms_iot = pa->pa_iot; @@ -213,7 +213,7 @@ pmsattach(parent, self, aux) void *aux; { struct pms_softc *sc = (void *)self; - struct pcppi_attach_args *pa = aux; + struct pckbc_attach_args *pa = aux; pms_iot = pa->pa_iot; pms_ioh = pa->pa_ioh; |