diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1999-08-09 03:29:46 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1999-08-09 03:29:46 +0000 |
commit | c7008c327415c542951caf6fc1876aa8f6abad72 (patch) | |
tree | 916dd09f74eed75b4d944f4904c631c5eb1fac30 /sys/dev/isa/opl_isa.c | |
parent | 2f91b329a07aa6b48a0b5788722231e5128dee4f (diff) |
Fix opl_isa_match declaration.
Diffstat (limited to 'sys/dev/isa/opl_isa.c')
-rw-r--r-- | sys/dev/isa/opl_isa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/opl_isa.c b/sys/dev/isa/opl_isa.c index ff326b6ede5..3c3e92ba61f 100644 --- a/sys/dev/isa/opl_isa.c +++ b/sys/dev/isa/opl_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: opl_isa.c,v 1.1 1999/01/02 00:02:44 niklas Exp $ */ +/* $OpenBSD: opl_isa.c,v 1.2 1999/08/09 03:29:45 fgsch Exp $ */ /* $NetBSD: opl_isa.c,v 1.1 1998/08/26 13:33:59 augustss Exp $ */ /* @@ -60,7 +60,7 @@ #define OPL_SIZE 4 -int opl_isa_match __P((struct device *, struct cfdata *, void *)); +int opl_isa_match __P((struct device *, void *, void *)); void opl_isa_attach __P((struct device *, struct device *, void *)); struct cfattach opl_isa_ca = { @@ -70,7 +70,7 @@ struct cfattach opl_isa_ca = { int opl_isa_match(parent, match, aux) struct device *parent; - struct cfdata *match; + void *match; void *aux; { struct isa_attach_args *ia = aux; |