diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-31 01:05:14 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-31 01:05:14 +0000 |
commit | d3679db18e84caee4da6f15fe00e4c39494dadf2 (patch) | |
tree | d1bafffa65a299d12b6621f4914f134fc8d77628 /sys/dev/isa | |
parent | acb24b57a076484b61159a23b384d07d9e79fd84 (diff) |
-Wall fixes needed by alpha
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/isa.c | 3 | ||||
-rw-r--r-- | sys/dev/isa/isavar.h | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c index 0257c40fc25..23f05025c4a 100644 --- a/sys/dev/isa/isa.c +++ b/sys/dev/isa/isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa.c,v 1.17 1996/08/15 07:38:56 deraadt Exp $ */ +/* $OpenBSD: isa.c,v 1.18 1996/10/31 01:05:08 niklas Exp $ */ /* $NetBSD: isa.c,v 1.85 1996/05/14 00:31:04 thorpej Exp $ */ /*- @@ -47,7 +47,6 @@ int isamatch __P((struct device *, void *, void *)); void isaattach __P((struct device *, struct device *, void *)); -int isaprint __P((void *, char *)); struct cfattach isa_ca = { sizeof(struct isa_softc), isamatch, isaattach diff --git a/sys/dev/isa/isavar.h b/sys/dev/isa/isavar.h index 8474be26422..13f37dabd05 100644 --- a/sys/dev/isa/isavar.h +++ b/sys/dev/isa/isavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isavar.h,v 1.16 1996/08/15 17:31:42 shawn Exp $ */ +/* $OpenBSD: isavar.h,v 1.17 1996/10/31 01:05:10 niklas Exp $ */ /* $NetBSD: isavar.h,v 1.23 1996/05/08 23:32:31 thorpej Exp $ */ /* @@ -182,9 +182,11 @@ struct isa_softc { */ /* ISA interrupt sharing types */ -void isascan __P((struct device *parent, void *match)); char *isa_intr_typename __P((int type)); +void isascan __P((struct device *parent, void *match)); +int isaprint __P((void *, char *)); + #ifdef NEWCONFIG /* * Establish a device as being on the ISA bus (XXX NOT IMPLEMENTED). |