summaryrefslogtreecommitdiffstats
path: root/sys/isa
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>2000-01-18 02:15:05 +0000
committermsmith <msmith@FreeBSD.org>2000-01-18 02:15:05 +0000
commit373ff2297cd2ab101ea7e91e64355e259ec7dc71 (patch)
tree6e9ba11b566fc92b7fc389e3b51b5ff22167e3a6 /sys/isa
parentcd58140a3f71225b489ba02bf78308d080ed6992 (diff)
downloadFreeBSD-src-373ff2297cd2ab101ea7e91e64355e259ec7dc71.zip
FreeBSD-src-373ff2297cd2ab101ea7e91e64355e259ec7dc71.tar.gz
Don't mark unallocated resources as active; the goal is to reserve them,
and there may be a good reason for them being unallocated (eg. they're nonsensical or not useful). The goal here is simply to reserve them against accidental use by other code.
Diffstat (limited to 'sys/isa')
-rw-r--r--sys/isa/isa_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/isa/isa_common.c b/sys/isa/isa_common.c
index a2478a1..2adf2ff 100644
--- a/sys/isa/isa_common.c
+++ b/sys/isa/isa_common.c
@@ -502,7 +502,7 @@ isa_probe_children(device_t dev)
rle->type,
&rid,
0, ~0, 1,
- RF_ACTIVE);
+ 0 /* !RF_ACTIVE */);
}
}
}
OpenPOWER on IntegriCloud