From 741f7789b89b03e37b41ae6fcb9fe77a0e0790e6 Mon Sep 17 00:00:00 2001 From: imp Date: Mon, 11 Oct 1999 18:53:59 +0000 Subject: [PATCH] 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. --- sys/dev/ie/if_ie.c | 3 ++- sys/i386/isa/if_ie.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index 811b3031272a..fbbb801fe9de 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -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 */ diff --git a/sys/i386/isa/if_ie.c b/sys/i386/isa/if_ie.c index 811b3031272a..fbbb801fe9de 100644 --- a/sys/i386/isa/if_ie.c +++ b/sys/i386/isa/if_ie.c @@ -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 */