1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

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.
This commit is contained in:
Mike Smith 2000-01-18 02:15:05 +00:00
parent f6bf1bb672
commit 01fef73008
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56214

View File

@ -502,7 +502,7 @@ isa_probe_children(device_t dev)
rle->type,
&rid,
0, ~0, 1,
RF_ACTIVE);
0 /* !RF_ACTIVE */);
}
}
}