From 35296018957c78b1f1e0b44afc80fd51617a5fc8 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Wed, 15 Oct 1997 10:09:24 +0000 Subject: [PATCH] Hide a silly ``unknown board type'' message behind bootverbose. The ``ie0: not found'' message is sufficient as a default. --- sys/dev/ie/if_ie.c | 7 ++++--- sys/i386/isa/if_ie.c | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index c1e4a5d1492..d60ce4c8a58 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.45 1997/09/02 01:18:14 bde Exp $ + * $Id: if_ie.c,v 1.46 1997/09/21 21:41:08 gibbs Exp $ */ /* @@ -401,8 +401,9 @@ sl_probe(struct isa_device *dvp) break; default: - printf("ie%d: unknown AT&T board type code %d\n", unit, - ie_softc[unit].hard_type); + if (bootverbose) + printf("ie%d: unknown AT&T board type code %d\n", unit, + ie_softc[unit].hard_type); return (0); } diff --git a/sys/i386/isa/if_ie.c b/sys/i386/isa/if_ie.c index c1e4a5d1492..d60ce4c8a58 100644 --- a/sys/i386/isa/if_ie.c +++ b/sys/i386/isa/if_ie.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.45 1997/09/02 01:18:14 bde Exp $ + * $Id: if_ie.c,v 1.46 1997/09/21 21:41:08 gibbs Exp $ */ /* @@ -401,8 +401,9 @@ sl_probe(struct isa_device *dvp) break; default: - printf("ie%d: unknown AT&T board type code %d\n", unit, - ie_softc[unit].hard_type); + if (bootverbose) + printf("ie%d: unknown AT&T board type code %d\n", unit, + ie_softc[unit].hard_type); return (0); } -- 2.45.2