Module Name: src
Committed By: skrll
Date: Fri Jan 2 07:57:18 UTC 2015
Modified Files:
src/sys/dev/usb [nick-nhusb]: ehci.c
Log Message:
Remove #ifdef DIAGNOSTIC / #endif from around a USBHIST_LOG call.
To generate a diff of this commit:
cvs rdiff -u -r1.234.2.23 -r1.234.2.24 src/sys/dev/usb/ehci.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/ehci.c
diff -u src/sys/dev/usb/ehci.c:1.234.2.23 src/sys/dev/usb/ehci.c:1.234.2.24
--- src/sys/dev/usb/ehci.c:1.234.2.23 Wed Dec 24 14:18:32 2014
+++ src/sys/dev/usb/ehci.c Fri Jan 2 07:57:18 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.234.2.23 2014/12/24 14:18:32 skrll Exp $ */
+/* $NetBSD: ehci.c,v 1.234.2.24 2015/01/02 07:57:18 skrll Exp $ */
/*
* Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
@@ -53,7 +53,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.234.2.23 2014/12/24 14:18:32 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.234.2.24 2015/01/02 07:57:18 skrll Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -631,10 +631,8 @@ ehci_intr(void *v)
if (intrs)
EOWRITE4(sc, EHCI_USBSTS, intrs); /* Acknowledge */
-#ifdef DIAGNOSTIC
USBHIST_LOGN(ehcidebug, 16,
"ignored interrupt while polling", 0, 0, 0, 0);
-#endif
goto done;
}