svn commit: r212128 - head/sys/dev/usb/input

Andrew Thompson thompsa at FreeBSD.org
Thu Sep 2 03:42:27 UTC 2010


Author: thompsa
Date: Thu Sep  2 03:42:26 2010
New Revision: 212128
URL: http://svn.freebsd.org/changeset/base/212128

Log:
  Silence debug error by default.
  
  PR:		usb/141212
  Submitted by:	Hans Petter Selasky

Modified:
  head/sys/dev/usb/input/ukbd.c

Modified: head/sys/dev/usb/input/ukbd.c
==============================================================================
--- head/sys/dev/usb/input/ukbd.c	Thu Sep  2 03:28:03 2010	(r212127)
+++ head/sys/dev/usb/input/ukbd.c	Thu Sep  2 03:42:26 2010	(r212128)
@@ -720,7 +720,7 @@ ukbd_set_leds_callback(struct usb_xfer *
 		break;
 
 	default:			/* Error */
-		DPRINTFN(0, "error=%s\n", usbd_errstr(error));
+		DPRINTFN(1, "error=%s\n", usbd_errstr(error));
 		break;
 	}
 }


More information about the svn-src-head mailing list