summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>1999-10-28 03:26:34 +0000
committerJason Wright <jason@cvs.openbsd.org>1999-10-28 03:26:34 +0000
commit93ab5e1c4ab7ee958224771f4d6f922bc785058b (patch)
tree98843cf0c0622e9945d7c3bbd9136b21c2399e16 /sys
parent9d933bf12d89867174fa45b35104226a40baf450 (diff)
hush up the link up/down messages
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_ti.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/dev/pci/if_ti.c b/sys/dev/pci/if_ti.c
index c8c2cd86d12..32df24a58e1 100644
--- a/sys/dev/pci/if_ti.c
+++ b/sys/dev/pci/if_ti.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ti.c,v 1.7 1999/10/25 19:39:18 jason Exp $ */
+/* $OpenBSD: if_ti.c,v 1.8 1999/10/28 03:26:33 jason Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -491,14 +491,6 @@ void ti_handle_events(sc)
switch(e->ti_event) {
case TI_EV_LINKSTAT_CHANGED:
sc->ti_linkstat = e->ti_code;
- if (e->ti_code == TI_EV_CODE_LINK_UP)
- printf("%s: 10/100 link up\n",
- sc->sc_dv.dv_xname);
- else if (e->ti_code == TI_EV_CODE_GIG_LINK_UP)
- printf("%s: gigabit link up\n",
- sc->sc_dv.dv_xname);
- else if (e->ti_code == TI_EV_CODE_LINK_DOWN)
- printf("%s: link down\n", sc->sc_dv.dv_xname);
break;
case TI_EV_ERROR:
if (e->ti_code == TI_EV_CODE_ERR_INVAL_CMD)