summaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb_subr.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2007-05-21 05:40:29 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2007-05-21 05:40:29 +0000
commit1b539c3c7dd463c768cad0db562eab4a77af23c6 (patch)
treeefa66dfccc2805a47bb9e009967268d66bcdf130 /sys/dev/usb/usb_subr.c
parentc5a35e5e8fca2938e5df4defb2374aed13f6c09a (diff)
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/usb_subr.c')
-rw-r--r--sys/dev/usb/usb_subr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c
index 2cca9fd6015..12601a6a169 100644
--- a/sys/dev/usb/usb_subr.c
+++ b/sys/dev/usb/usb_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usb_subr.c,v 1.48 2007/02/28 22:30:55 deraadt Exp $ */
+/* $OpenBSD: usb_subr.c,v 1.49 2007/05/21 05:40:28 jsg Exp $ */
/* $NetBSD: usb_subr.c,v 1.103 2003/01/10 11:19:13 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/usb_subr.c,v 1.18 1999/11/17 22:33:47 n_hibma Exp $ */
@@ -58,8 +58,8 @@
#include <dev/usb/usb_quirks.h>
#ifdef USB_DEBUG
-#define DPRINTF(x) do { if (usbdebug) logprintf x; } while (0)
-#define DPRINTFN(n,x) do { if (usbdebug>(n)) logprintf x; } while (0)
+#define DPRINTF(x) do { if (usbdebug) printf x; } while (0)
+#define DPRINTFN(n,x) do { if (usbdebug>(n)) printf x; } while (0)
extern int usbdebug;
#else
#define DPRINTF(x)