Module Name:    src
Committed By:   skrll
Date:           Sun Nov  1 12:09:49 UTC 2015

Modified Files:
        src/sys/dev/usb [nick-nhusb]: uhci.c

Log Message:
Missed a s:uhcidebug >:uhcidebug >=: in the consistency with USBHIST_LOGN
commit


To generate a diff of this commit:
cvs rdiff -u -r1.264.4.45 -r1.264.4.46 src/sys/dev/usb/uhci.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/uhci.c
diff -u src/sys/dev/usb/uhci.c:1.264.4.45 src/sys/dev/usb/uhci.c:1.264.4.46
--- src/sys/dev/usb/uhci.c:1.264.4.45	Sun Nov  1 10:45:42 2015
+++ src/sys/dev/usb/uhci.c	Sun Nov  1 12:09:48 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: uhci.c,v 1.264.4.45 2015/11/01 10:45:42 skrll Exp $	*/
+/*	$NetBSD: uhci.c,v 1.264.4.46 2015/11/01 12:09:48 skrll Exp $	*/
 
 /*
  * Copyright (c) 1998, 2004, 2011, 2012 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.264.4.45 2015/11/01 10:45:42 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.264.4.46 2015/11/01 12:09:48 skrll Exp $");
 
 #include "opt_usb.h"
 
@@ -1281,7 +1281,7 @@ uhci_intr1(uhci_softc_t *sc)
 	UHCIHIST_FUNC(); UHCIHIST_CALLED();
 
 #ifdef UHCI_DEBUG
-	if (uhcidebug > 15) {
+	if (uhcidebug >= 15) {
 		DPRINTF("sc %p", sc, 0, 0, 0);
 		uhci_dumpregs(sc);
 	}

Reply via email to