summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/ufm.c
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2002-07-31 13:33:55 +0000
committerjoe <joe@FreeBSD.org>2002-07-31 13:33:55 +0000
commit03e965b480798ffb5a2740bb8c871c70054ced82 (patch)
treedd95364f776cb0c0e54f022e48c5e8db7f52c692 /sys/dev/usb/ufm.c
parentdb2b5421c21286b0bc2dc446ebf11eb4912f480e (diff)
downloadFreeBSD-src-03e965b480798ffb5a2740bb8c871c70054ced82.zip
FreeBSD-src-03e965b480798ffb5a2740bb8c871c70054ced82.tar.gz
Get bored with hard coded debug level variables and introduce a debug.usb
sysctl tree for tweaking them real-time. Reviewed by: iedowse
Diffstat (limited to 'sys/dev/usb/ufm.c')
-rw-r--r--sys/dev/usb/ufm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/usb/ufm.c b/sys/dev/usb/ufm.c
index 0ad7679..609c95d 100644
--- a/sys/dev/usb/ufm.c
+++ b/sys/dev/usb/ufm.c
@@ -55,6 +55,7 @@
#endif
#include <sys/vnode.h>
#include <sys/poll.h>
+#include <sys/sysctl.h>
#include <dev/usb/usb.h>
#include <dev/usb/usbdi.h>
@@ -67,6 +68,8 @@
#define DPRINTF(x) if (ufmdebug) logprintf x
#define DPRINTFN(n,x) if (ufmdebug>(n)) logprintf x
int ufmdebug = 100;
+SYSCTL_INT(_debug_usb, OID_AUTO, ufm, CTLFLAG_RW,
+ &ufmdebug, 0, "ufm debug level");
#else
#define DPRINTF(x)
#define DPRINTFN(n,x)
OpenPOWER on IntegriCloud