summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/com_isapnp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/com_isapnp.c b/sys/dev/isa/com_isapnp.c
index 1859c9c2338..a0c978b8c43 100644
--- a/sys/dev/isa/com_isapnp.c
+++ b/sys/dev/isa/com_isapnp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com_isapnp.c,v 1.2 2003/06/02 23:28:02 millert Exp $ */
+/* $OpenBSD: com_isapnp.c,v 1.3 2008/04/27 01:49:28 dlg Exp $ */
/*
* Copyright (c) 1997 - 1999, Jason Downs. All rights reserved.
*
@@ -79,7 +79,7 @@ struct cfattach com_isapnp_ca = {
#endif
int com_isapnp_probe(struct device *, void *, void *);
-int com_isapnp_attach(struct device *, struct device *, void *);
+void com_isapnp_attach(struct device *, struct device *, void *);
int
com_isapnp_probe(struct device *parent, void *match, void *aux)
@@ -104,7 +104,7 @@ com_isapnp_probe(struct device *parent, void *match, void *aux)
return comprobe1(iot, ioh);
}
-int
+void
com_isapnp_attach(struct device *parent, struct device *self, void *aux)
{
struct com_softc *sc = (void *)self;