mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Merged from sys/i386/isa/npx.c revision 1.83.
This commit is contained in:
parent
9e3aaab780
commit
aae33d3c2a
1 changed files with 5 additions and 1 deletions
|
|
@ -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 a new issue