diff options
author | 2007-05-21 05:40:27 +0000 | |
---|---|---|
committer | 2007-05-21 05:40:27 +0000 | |
commit | 695146ce8180512370aa44750fc87b1be6f3ae5c (patch) | |
tree | 5b3f9a99ac1a8a426bac337e998f9c7abe9980b7 /sys/dev/usb/uhub.c | |
parent | Remove Ether_ifattach macro (diff) | |
download | wireguard-openbsd-695146ce8180512370aa44750fc87b1be6f3ae5c.tar.xz wireguard-openbsd-695146ce8180512370aa44750fc87b1be6f3ae5c.zip |
Remove logprintf macro
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r-- | sys/dev/usb/uhub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index 31f0990b9ab..6f86f8fa028 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uhub.c,v 1.37 2007/03/22 05:45:57 pascoe Exp $ */ +/* $OpenBSD: uhub.c,v 1.38 2007/05/21 05:40:28 jsg Exp $ */ /* $NetBSD: uhub.c,v 1.64 2003/02/08 03:32:51 ichiro Exp $ */ /* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $ */ @@ -66,8 +66,8 @@ #define UHUB_INTR_INTERVAL 255 /* ms */ #ifdef UHUB_DEBUG -#define DPRINTF(x) do { if (uhubdebug) logprintf x; } while (0) -#define DPRINTFN(n,x) do { if (uhubdebug>(n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (uhubdebug) printf x; } while (0) +#define DPRINTFN(n,x) do { if (uhubdebug>(n)) printf x; } while (0) int uhubdebug = 0; #else #define DPRINTF(x) |