diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1999-05-30 11:10:10 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1999-05-30 11:10:10 +0000 |
| commit | d384956496022d3affe95dfce1df19896f0f3e0b (patch) | |
| tree | 92d58b8014c174efe247b960846d857324a0fb4e /sys/dev | |
| parent | 8b05278ca1c7c6f1fc0fff93804ec3f26e40cdde (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/buslogic/bt_isa.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/buslogic/bt_isa.c b/sys/dev/buslogic/bt_isa.c index 2de4ef8ffd7e1..db9fc8c03f3c8 100644 --- a/sys/dev/buslogic/bt_isa.c +++ b/sys/dev/buslogic/bt_isa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt_isa.c,v 1.11 1999/05/08 21:59:23 dfr Exp $ + * $Id: bt_isa.c,v 1.12 1999/05/22 15:45:47 dfr Exp $ */ #include <sys/param.h> @@ -126,6 +126,10 @@ bt_isa_probe(device_t dev) int port_index; int max_port_index; + /* No pnp support */ + if (isa_get_vendorid(dev)) + return (ENXIO); + port_index = 0; max_port_index = BT_NUM_ISAPORTS - 1; /* |
