mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
Merged from sys/i386/isa/npx.c revision 1.83.
This commit is contained in:
parent
9e3aaab780
commit
aae33d3c2a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62202
@ -1016,7 +1016,11 @@ static struct isa_pnp_id npxisa_ids[] = {
|
||||
static int
|
||||
npxisa_probe(device_t dev)
|
||||
{
|
||||
return (ISA_PNP_PROBE(device_get_parent(dev), dev, npxisa_ids));
|
||||
int result;
|
||||
if ((result = ISA_PNP_PROBE(device_get_parent(dev), dev, npxisa_ids)) <= 0) {
|
||||
device_quiet(dev);
|
||||
}
|
||||
return(result);
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user