diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-27 12:20:25 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-27 12:20:25 +0000 |
commit | 083a032195a24290d5894ea81c18ec82da4242a2 (patch) | |
tree | 456ab1cd11823e186ff1e92f7ea549f5bb910eab /sys/dev/isa/bt.c | |
parent | c5282514edf7aaddee639aa73f1c489085c5a68b (diff) |
bustype F is commonly seem for aha cards, do not whine
Diffstat (limited to 'sys/dev/isa/bt.c')
-rw-r--r-- | sys/dev/isa/bt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/isa/bt.c b/sys/dev/isa/bt.c index 405a8105339..67c162527fe 100644 --- a/sys/dev/isa/bt.c +++ b/sys/dev/isa/bt.c @@ -871,7 +871,9 @@ bt_find(ia, sc) /* We don't grok MicroChannel (yet). */ return 1; default: - printf("bt_find: illegal bus type %c\n", inquire.reply.bus_type); + if (inquire.reply.bus_type != 'F') + printf("bt_find: illegal bus type %c\n", + inquire.reply.bus_type); return 1; } |