summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/isa/pckbd.c
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1999-01-08 03:16:17 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1999-01-08 03:16:17 +0000
commitad2229181528c548830bb38d329e9a7a8fa652d5 (patch)
tree4a3f48cb2e56c19d9cd8a1184ebfc489e4bc4cd0 /sys/arch/alpha/isa/pckbd.c
parentdad4eff1f7fe223f168c88f9873e5ddb32f74884 (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/pckbd.c')
-rw-r--r--sys/arch/alpha/isa/pckbd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/alpha/isa/pckbd.c b/sys/arch/alpha/isa/pckbd.c
index da04102efcb..4180b96cc76 100644
--- a/sys/arch/alpha/isa/pckbd.c
+++ b/sys/arch/alpha/isa/pckbd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pckbd.c,v 1.14 1998/02/05 22:57:51 deraadt Exp $ */
+/* $OpenBSD: pckbd.c,v 1.15 1999/01/08 03:16:15 niklas Exp $ */
/* $NetBSD: pckbd.c,v 1.14 1996/12/05 01:39:30 cgd Exp $ */
/*-
@@ -65,7 +65,7 @@
#include <alpha/isa/spkrreg.h>
#include <alpha/isa/timerreg.h>
#include <machine/wsconsio.h>
-#include <alpha/isa/pcppivar.h>
+#include <alpha/isa/pckbcvar.h>
#include <dev/wscons/wsconsvar.h>
#include <dev/wscons/kbd.h>
@@ -323,10 +323,10 @@ pckbdprobe(parent, match, aux)
#endif
void *aux;
{
- struct pcppi_attach_args *pa = aux;
+ struct pckbc_attach_args *pa = aux;
u_int i, rv;
- if (pa->pa_slot != PCPPI_KBD_SLOT)
+ if (pa->pa_slot != PCKBC_KBD_SLOT)
return 0;
rv = 0;
@@ -418,7 +418,7 @@ pckbdattach(parent, self, aux)
void *aux;
{
struct pckbd_softc *sc = (void *)self;
- struct pcppi_attach_args *pa = aux;
+ struct pckbc_attach_args *pa = aux;
pckbd_iot = pa->pa_iot;
pckbd_ic = pa->pa_ic;