diff --git a/sys/dev/fe/if_fe_cbus.c b/sys/dev/fe/if_fe_cbus.c index ea61b7615fa..0e8d7325ba5 100644 --- a/sys/dev/fe/if_fe_cbus.c +++ b/sys/dev/fe/if_fe_cbus.c @@ -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);