summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-02-24 23:56:20 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-02-24 23:56:20 +0000
commit96a6b9407582fc3dcd82cbeeff1ffa64e5c3571c (patch)
treede92d8f7fd3685d45bf793d8b222dd2362b8e4b3 /sys/dev/ic
parent4c195e1e7c9fa6352f5aa403e56b9695aa0b4a0f (diff)
Make the "ring buffer overrun" message a DEBUG message instead
of a DIAGNOSTIC message for now, this should be looked at after release.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/dp8390.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/dp8390.c b/sys/dev/ic/dp8390.c
index 39d96f35982..2db24368ebf 100644
--- a/sys/dev/ic/dp8390.c
+++ b/sys/dev/ic/dp8390.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dp8390.c,v 1.29 2005/10/22 23:26:02 brad Exp $ */
+/* $OpenBSD: dp8390.c,v 1.30 2006/02/24 23:56:19 brad Exp $ */
/* $NetBSD: dp8390.c,v 1.13 1998/07/05 06:49:11 jonathan Exp $ */
/*
@@ -717,7 +717,7 @@ dp8390_intr(arg)
*/
if (isr & ED_ISR_OVW) {
++ifp->if_ierrors;
-#ifdef DIAGNOSTIC
+#ifdef DEBUG
log(LOG_WARNING, "%s: warning - receiver "
"ring buffer overrun\n",
sc->sc_dev.dv_xname);