diff options
author | hselasky <hselasky@FreeBSD.org> | 2015-01-05 15:04:17 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2015-01-05 15:04:17 +0000 |
commit | 47174a10af396376ae849d4e131d38c066b9a4b9 (patch) | |
tree | c1152c2b0c9d6cf7f22690226efd82915c361ef0 /sys/dev/usb/controller/atmegadci.c | |
parent | 266f3b9335f8efbe15bf385fa09271ae1211f08c (diff) | |
download | FreeBSD-src-47174a10af396376ae849d4e131d38c066b9a4b9.zip FreeBSD-src-47174a10af396376ae849d4e131d38c066b9a4b9.tar.gz |
Make a bunch of USB debug SYSCTLs tunable, so that their value(s) can
be set before the USB device(s) are probed.
Diffstat (limited to 'sys/dev/usb/controller/atmegadci.c')
-rw-r--r-- | sys/dev/usb/controller/atmegadci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/atmegadci.c b/sys/dev/usb/controller/atmegadci.c index 8e08ff1..8afdc92 100644 --- a/sys/dev/usb/controller/atmegadci.c +++ b/sys/dev/usb/controller/atmegadci.c @@ -88,7 +88,7 @@ static int atmegadci_debug = 0; static SYSCTL_NODE(_hw_usb, OID_AUTO, atmegadci, CTLFLAG_RW, 0, "USB ATMEGA DCI"); -SYSCTL_INT(_hw_usb_atmegadci, OID_AUTO, debug, CTLFLAG_RW, +SYSCTL_INT(_hw_usb_atmegadci, OID_AUTO, debug, CTLFLAG_RWTUN, &atmegadci_debug, 0, "ATMEGA DCI debug level"); #endif |