diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-07 16:38:24 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-07 16:38:24 +0000 |
commit | 501c90dacc6a330f20bd3c75996ed36053f9e8f6 (patch) | |
tree | c9d268bff24fb0d4bfb12720beabaa03c6fd8c4d /sys | |
parent | b20baf07b5437141cf3c21855d6b7d7d47cad50b (diff) |
Removed the unused arg of comprobe1
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isa/ast.c | 4 | ||||
-rw-r--r-- | sys/dev/isa/boca.c | 4 | ||||
-rw-r--r-- | sys/dev/isa/rtfps.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/isa/ast.c b/sys/dev/isa/ast.c index d467859d3de..fb51817eee6 100644 --- a/sys/dev/isa/ast.c +++ b/sys/dev/isa/ast.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ast.c,v 1.16 1996/12/03 02:31:57 deraadt Exp $ */ +/* $OpenBSD: ast.c,v 1.17 1997/07/07 16:38:22 niklas Exp $ */ /* $NetBSD: ast.c,v 1.28 1996/05/12 23:51:45 mycroft Exp $ */ /* @@ -100,7 +100,7 @@ astprobe(parent, self, aux) rv = 0; goto out; } - rv = comprobe1(iot, ioh, iobase); + rv = comprobe1(iot, ioh); bus_space_unmap(iot, ioh, COM_NPORTS); if (rv == 0) goto out; diff --git a/sys/dev/isa/boca.c b/sys/dev/isa/boca.c index 87e427c8276..fe8ec586830 100644 --- a/sys/dev/isa/boca.c +++ b/sys/dev/isa/boca.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boca.c,v 1.14 1996/12/03 07:48:23 niklas Exp $ */ +/* $OpenBSD: boca.c,v 1.15 1997/07/07 16:38:23 niklas Exp $ */ /* $NetBSD: boca.c,v 1.15 1996/05/12 23:51:50 mycroft Exp $ */ /* @@ -100,7 +100,7 @@ bocaprobe(parent, self, aux) rv = 0; goto out; } - rv = comprobe1(iot, ioh, iobase); + rv = comprobe1(iot, ioh); bus_space_unmap(iot, ioh, COM_NPORTS); if (rv == 0) goto out; diff --git a/sys/dev/isa/rtfps.c b/sys/dev/isa/rtfps.c index a9ef43d0ba0..8ecb5a76c0f 100644 --- a/sys/dev/isa/rtfps.c +++ b/sys/dev/isa/rtfps.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtfps.c,v 1.16 1997/01/29 06:23:31 downsj Exp $ */ +/* $OpenBSD: rtfps.c,v 1.17 1997/07/07 16:38:22 niklas Exp $ */ /* $NetBSD: rtfps.c,v 1.27 1996/10/21 22:41:18 thorpej Exp $ */ /* @@ -102,7 +102,7 @@ rtfpsprobe(parent, self, aux) rv = 0; goto out; } - rv = comprobe1(iot, ioh, iobase); + rv = comprobe1(iot, ioh); bus_space_unmap(iot, ioh, COM_NPORTS); if (rv == 0) goto out; |