summaryrefslogtreecommitdiff
path: root/sys/dev/usb/ucycom.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/ucycom.c
parentc5a35e5e8fca2938e5df4defb2374aed13f6c09a (diff)
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/ucycom.c')
-rw-r--r--sys/dev/usb/ucycom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ucycom.c b/sys/dev/usb/ucycom.c
index 8da14204f16..742ecb9fbd8 100644
--- a/sys/dev/usb/ucycom.c
+++ b/sys/dev/usb/ucycom.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ucycom.c,v 1.4 2006/08/24 12:14:23 jason Exp $ */
+/* $OpenBSD: ucycom.c,v 1.5 2007/05/21 05:40:28 jsg Exp $ */
/* $NetBSD: ucycom.c,v 1.3 2005/08/05 07:27:47 skrll Exp $ */
/*
@@ -68,8 +68,8 @@
#include <dev/usb/ucomvar.h>
#ifdef UCYCOM_DEBUG
-#define DPRINTF(x) if (ucycomdebug) logprintf x
-#define DPRINTFN(n, x) if (ucycomdebug > (n)) logprintf x
+#define DPRINTF(x) if (ucycomdebug) printf x
+#define DPRINTFN(n, x) if (ucycomdebug > (n)) printf x
int ucycomdebug = 200;
#else
#define DPRINTF(x)