Hid silly unknown board types message behind if (bootverbose). This

appears to have been lost sometime since joerge made this same fix in
1.47.
This commit is contained in:
imp 1999-10-11 18:53:59 +00:00
parent 7babece94a
commit 741f7789b8
2 changed files with 4 additions and 2 deletions

View File

@ -597,7 +597,8 @@ ee16_probe(struct isa_device *dvp)
}
if (board_id != IEE16_ID) {
printf("ie%d: unknown board_id: %x\n", unit, board_id);
if (bootverbose)
printf("ie%d: unknown board_id: %x\n", unit, board_id);
return (0);
}
/* need sc->port for ee16_read_eeprom */

View File

@ -597,7 +597,8 @@ ee16_probe(struct isa_device *dvp)
}
if (board_id != IEE16_ID) {
printf("ie%d: unknown board_id: %x\n", unit, board_id);
if (bootverbose)
printf("ie%d: unknown board_id: %x\n", unit, board_id);
return (0);
}
/* need sc->port for ee16_read_eeprom */