diff options
author | 1997-07-07 17:09:07 +0000 | |
---|---|---|
committer | 1997-07-07 17:09:07 +0000 | |
commit | 488a995681f471b08fde05711131e35f3f79e81c (patch) | |
tree | bf2f51831f8bdb07a5c18c428329588dbb76a9e1 | |
parent | Mirror com changes (diff) | |
download | wireguard-openbsd-488a995681f471b08fde05711131e35f3f79e81c.tar.xz wireguard-openbsd-488a995681f471b08fde05711131e35f3f79e81c.zip |
heh, yet one more... comprobe1 call fixed
-rw-r--r-- | sys/arch/wgrisc/dev/com_risc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/wgrisc/dev/com_risc.c b/sys/arch/wgrisc/dev/com_risc.c index aae04df1ca6..df27ce67e38 100644 --- a/sys/arch/wgrisc/dev/com_risc.c +++ b/sys/arch/wgrisc/dev/com_risc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_risc.c,v 1.1.1.1 1997/02/06 16:02:42 pefo Exp $ */ +/* $OpenBSD: com_risc.c,v 1.2 1997/07/07 17:09:07 niklas Exp $ */ /* * Copyright (c) 1993, 1994 Charles Hannum. @@ -108,7 +108,7 @@ com_risc_probe(parent, match, aux) rv = 0; goto out; } - rv = comprobe1(iot, ioh, iobase); + rv = comprobe1(iot, ioh); if (needioh) bus_space_unmap(iot, ioh, COM_NPORTS); |