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:
parent
7babece94a
commit
741f7789b8
@ -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 */
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user