diff options
author | joerg <joerg@FreeBSD.org> | 1997-10-15 10:09:24 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1997-10-15 10:09:24 +0000 |
commit | 29fe905ae5b25aaf30812c52457dc4d8a523452c (patch) | |
tree | 9b998cc2e1dd4fe5ee61214528d656ff935659fe /sys/dev/ie | |
parent | 92eeb70dc633df7b917a89ac938c0a99671e04bc (diff) | |
download | FreeBSD-src-29fe905ae5b25aaf30812c52457dc4d8a523452c.zip FreeBSD-src-29fe905ae5b25aaf30812c52457dc4d8a523452c.tar.gz |
Hide a silly ``unknown board type'' message behind bootverbose. The
``ie0: not found'' message is sufficient as a default.
Diffstat (limited to 'sys/dev/ie')
-rw-r--r-- | sys/dev/ie/if_ie.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index c1e4a5d..d60ce4c 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); } |