diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-01-23 19:41:34 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-01-23 19:41:34 +0000 |
commit | b19e6378e3b9133ff05918295857f7700b6c2a73 (patch) | |
tree | c555e7dbc5b92cb32268695b987bedbc09e6e61a /sys/arch/powerpc/isa/pcppi.c | |
parent | f67aeef8235bb7253a0af2abc944fd9ee717f8a6 (diff) |
Fixes to update to that the powerpc port builds again.
These change were necessary due to the following changes:
The change/import of the "generic" isa/pcppi driver. The powerpc
port currently has it's own copy of that driver. The two versions
need to be merged.
The parameter changes to cpu_set_kpc. The powerpc change was not quite correct.
Diffstat (limited to 'sys/arch/powerpc/isa/pcppi.c')
-rw-r--r-- | sys/arch/powerpc/isa/pcppi.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/powerpc/isa/pcppi.c b/sys/arch/powerpc/isa/pcppi.c index 66c0a310145..3a69f665b47 100644 --- a/sys/arch/powerpc/isa/pcppi.c +++ b/sys/arch/powerpc/isa/pcppi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcppi.c,v 1.1 1998/09/27 03:55:58 rahnds Exp $ */ +/* $OpenBSD: pcppi.c,v 1.2 1999/01/23 19:41:33 rahnds Exp $ */ /* $NetBSD: pcppi.c,v 1.3 1996/12/05 01:39:31 cgd Exp $ */ /* @@ -54,11 +54,13 @@ int pcppi_match __P((struct device *, struct cfdata *, void *)); #endif void pcppi_attach __P((struct device *, struct device *, void *)); -struct cfattach pcppi_ca = { +/* ARGH pcppi_ca -> pckbc_ca */ +struct cfattach pckbc_ca = { sizeof(struct pcppi_softc), pcppi_match, pcppi_attach, }; -struct cfdriver pcppi_cd = { +/* ARGH pcppi_cd -> pckbc_cd */ +struct cfdriver pckbc_cd = { NULL, "pcppi", DV_DULL, }; |