summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1997-10-15 10:09:24 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1997-10-15 10:09:24 +0000
commit35296018957c78b1f1e0b44afc80fd51617a5fc8 (patch)
treeba2cca001acbf2156f7d98ccab35d9d8f9aa99fd
parent6a525123aa4a625dc42e66234e237a4f6f232bfc (diff)
Notes
-rw-r--r--sys/dev/ie/if_ie.c7
-rw-r--r--sys/i386/isa/if_ie.c7
2 files changed, 8 insertions, 6 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c
index c1e4a5d1492c..d60ce4c8a58e 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 c1e4a5d1492c..d60ce4c8a58e 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);
}