svn commit: r215494 - stable/8/sys/dev/usb/input

Andrew Thompson thompsa at FreeBSD.org
Fri Nov 19 01:43:08 UTC 2010


Author: thompsa
Date: Fri Nov 19 01:43:08 2010
New Revision: 215494
URL: http://svn.freebsd.org/changeset/base/215494

Log:
  MFC r212128
  
   Silence debug error by default.
  
  PR:		usb/141212

Modified:
  stable/8/sys/dev/usb/input/ukbd.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/usb/input/ukbd.c
==============================================================================
--- stable/8/sys/dev/usb/input/ukbd.c	Fri Nov 19 01:42:13 2010	(r215493)
+++ stable/8/sys/dev/usb/input/ukbd.c	Fri Nov 19 01:43:08 2010	(r215494)
@@ -727,7 +727,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-stable-8 mailing list