Module Name:    src
Committed By:   bouyer
Date:           Sun Oct 20 12:49:33 UTC 2013

Modified Files:
        src/sys/dev/usb [netbsd-6]: if_aue.c

Log Message:
Pull up following revision(s) (requested by tsutsui in ticket #956):
        sys/dev/usb/if_aue.c: revision 1.131
Change one aprint_error_dev(9) to aprint_debug_dev(9) to avoid console spam.
My aue (BUFFALO LUA2-TX) generates a bunch of
"aue0: 1 usb errors on intr: IOERROR" errors during TRX,
but works without visible problems.
XXX this is not autoconf(9) message


To generate a diff of this commit:
cvs rdiff -u -r1.124 -r1.124.2.1 src/sys/dev/usb/if_aue.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/if_aue.c
diff -u src/sys/dev/usb/if_aue.c:1.124 src/sys/dev/usb/if_aue.c:1.124.2.1
--- src/sys/dev/usb/if_aue.c:1.124	Thu Feb  2 19:43:07 2012
+++ src/sys/dev/usb/if_aue.c	Sun Oct 20 12:49:33 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_aue.c,v 1.124 2012/02/02 19:43:07 tls Exp $	*/
+/*	$NetBSD: if_aue.c,v 1.124.2.1 2013/10/20 12:49:33 bouyer Exp $	*/
 /*
  * Copyright (c) 1997, 1998, 1999, 2000
  *	Bill Paul <wp...@ee.columbia.edu>.  All rights reserved.
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_aue.c,v 1.124 2012/02/02 19:43:07 tls Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_aue.c,v 1.124.2.1 2013/10/20 12:49:33 bouyer Exp $");
 
 #include "opt_inet.h"
 
@@ -1070,7 +1070,7 @@ aue_intr(usbd_xfer_handle xfer, usbd_pri
 		}
 		sc->aue_intr_errs++;
 		if (usbd_ratecheck(&sc->aue_rx_notice)) {
-			aprint_error_dev(sc->aue_dev,
+			aprint_debug_dev(sc->aue_dev,
 			    "%u usb errors on intr: %s\n", sc->aue_intr_errs,
 			    usbd_errstr(status));
 			sc->aue_intr_errs = 0;

Reply via email to