diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-01-13 01:09:14 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-01-13 01:09:14 +0000 |
commit | 7fa15f53015e69b3e65c07cc8624430fc775eeb6 (patch) | |
tree | d5265c3a3e922a55bd6d151dd70f66812c4f4468 | |
parent | 21033cbdb850fae830dc15b5d4613b258ad065f0 (diff) | |
download | FreeBSD-src-7fa15f53015e69b3e65c07cc8624430fc775eeb6.zip FreeBSD-src-7fa15f53015e69b3e65c07cc8624430fc775eeb6.tar.gz |
Changed 'xxxdebug = 0' to '...= 1' (Brian Feldman)
-rw-r--r-- | sys/dev/usb/ucom.c | 4 | ||||
-rw-r--r-- | sys/dev/usb/uhid.c | 4 | ||||
-rw-r--r-- | sys/dev/usb/ukbd.c | 4 | ||||
-rw-r--r-- | sys/dev/usb/umodem.c | 2 | ||||
-rw-r--r-- | sys/dev/usb/usb.c | 8 |
5 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c index 902e976..6772854 100644 --- a/sys/dev/usb/ucom.c +++ b/sys/dev/usb/ucom.c @@ -1,5 +1,5 @@ /* $NetBSD: ucom.c,v 1.6 1999/01/08 11:58:25 augustss Exp $ */ -/* FreeBSD $Id: ucom.c,v 1.6 1999/01/08 17:25:37 eivind Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -72,7 +72,7 @@ #ifdef USB_DEBUG #define DPRINTF(x) if (ucomdebug) printf x #define DPRINTFN(n,x) if (ucomdebug>(n)) printf x -int ucomdebug = 0; +int ucomdebug = 1; #else #define DPRINTF(x) #define DPRINTFN(n,x) diff --git a/sys/dev/usb/uhid.c b/sys/dev/usb/uhid.c index 1e3c37c..0b07dce 100644 --- a/sys/dev/usb/uhid.c +++ b/sys/dev/usb/uhid.c @@ -1,5 +1,5 @@ /* $NetBSD: uhid.c,v 1.14 1999/01/08 11:58:25 augustss Exp $ */ -/* FreeBSD $Id: uhid.c,v 1.5 1999/01/07 23:31:34 n_hibma Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -71,7 +71,7 @@ #ifdef USB_DEBUG #define DPRINTF(x) if (uhiddebug) printf x #define DPRINTFN(n,x) if (uhiddebug>(n)) printf x -int uhiddebug = 0; +int uhiddebug = 1; #else #define DPRINTF(x) #define DPRINTFN(n,x) diff --git a/sys/dev/usb/ukbd.c b/sys/dev/usb/ukbd.c index 4f0bc75..c9b9a72 100644 --- a/sys/dev/usb/ukbd.c +++ b/sys/dev/usb/ukbd.c @@ -1,5 +1,5 @@ /* $NetBSD: ukbd.c,v 1.22 1999/01/09 12:10:36 drochner Exp $ */ -/* FreeBSD $Id: ukbd.c,v 1.5 1999/01/07 23:31:34 n_hibma Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -87,7 +87,7 @@ #ifdef USB_DEBUG #define DPRINTF(x) if (ukbddebug) printf x #define DPRINTFN(n,x) if (ukbddebug>(n)) printf x -int ukbddebug = 0; +int ukbddebug = 1; #else #define DPRINTF(x) #define DPRINTFN(n,x) diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c index 1faac21..23f3489 100644 --- a/sys/dev/usb/umodem.c +++ b/sys/dev/usb/umodem.c @@ -68,7 +68,7 @@ #ifdef USB_DEBUG #define DPRINTF(x) if (umodemdebug) printf x #define DPRINTFN(n,x) if (umodemdebug>(n)) printf x -int umodemdebug = 0; +int umodemdebug = 1; #else #define DPRINTF(x) #define DPRINTFN(n,x) diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index e214a82..70c7516 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -1,5 +1,5 @@ /* $NetBSD: usb.c,v 1.11 1999/01/08 11:58:25 augustss Exp $ */ -/* FreeBSD $Id: usb.c,v 1.5 1999/01/07 23:31:37 n_hibma Exp $ */ +/* $FreeBSD$ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -77,9 +77,9 @@ MALLOC_DEFINE(M_USBDEV, "USBdev", "USB device"); #ifdef USB_DEBUG #define DPRINTF(x) if (usbdebug) printf x #define DPRINTFN(n,x) if (usbdebug>(n)) printf x -int usbdebug = 0; -int uhcidebug; -int ohcidebug; +int usbdebug = 1; +int uhcidebug = 1; +int ohcidebug = 1; #else #define DPRINTF(x) #define DPRINTFN(n,x) |