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:
Mike Smith 2001-08-31 02:14:34 +00:00
parent ab2ba9fac8
commit 91bca55f68
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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);