mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The fe driver does not support pnp devices.
This commit is contained in:
parent
906b64d5b6
commit
a79d3d2428
1 changed files with 4 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue