mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Revert previous "fix"; bus mice still have to be manually probed even in
the presence of PnP data. Submitted by: yokota
This commit is contained in:
parent
ab2ba9fac8
commit
91bca55f68
2 changed files with 2 additions and 2 deletions
|
|
@ -288,7 +288,7 @@ mse_probe(dev)
|
|||
|
||||
/* check PnP IDs */
|
||||
error = ISA_PNP_PROBE(device_get_parent(dev), dev, mse_ids);
|
||||
if (error != ENOENT)
|
||||
if (error == ENXIO)
|
||||
return error;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
|
|
|
|||
|
|
@ -288,7 +288,7 @@ mse_probe(dev)
|
|||
|
||||
/* check PnP IDs */
|
||||
error = ISA_PNP_PROBE(device_get_parent(dev), dev, mse_ids);
|
||||
if (error != ENOENT)
|
||||
if (error == ENXIO)
|
||||
return error;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
|
|
|
|||
Loading…
Reference in a new issue