summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/isa/bt.c4
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;
}