The fe driver does not support pnp devices.

This commit is contained in:
Yoshihiro Takahashi 2000-11-10 14:05:47 +00:00
parent 906b64d5b6
commit a79d3d2428
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68566

View File

@ -96,6 +96,10 @@ fe_isa_probe(device_t dev)
struct fe_softc * sc;
int error;
/* Check isapnp ids */
if (isa_get_vendorid(dev))
return (ENXIO);
/* Prepare for the softc struct. */
sc = device_get_softc(dev);
sc->sc_unit = device_get_unit(dev);