diff options
author | thompsa <thompsa@FreeBSD.org> | 2010-04-22 21:31:34 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2010-04-22 21:31:34 +0000 |
commit | bd3f3db8dd41b77e5624bea80abc9248a8f134a6 (patch) | |
tree | 9000e5bc0e27a7baa3f0c95de314e4c394588cf1 /sys/dev/usb/serial/ubsa.c | |
parent | 6fc09494d18ddab1972ded17fb6e798228bacffb (diff) | |
download | FreeBSD-src-bd3f3db8dd41b77e5624bea80abc9248a8f134a6.zip FreeBSD-src-bd3f3db8dd41b77e5624bea80abc9248a8f134a6.tar.gz |
Change USB_DEBUG to #ifdef and allow it to be turned off. Previously this had
the illusion of a tunable setting but was always turned on regardless.
MFC after: 1 week
Diffstat (limited to 'sys/dev/usb/serial/ubsa.c')
-rw-r--r-- | sys/dev/usb/serial/ubsa.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/usb/serial/ubsa.c b/sys/dev/usb/serial/ubsa.c index 32639fc..5817509 100644 --- a/sys/dev/usb/serial/ubsa.c +++ b/sys/dev/usb/serial/ubsa.c @@ -93,7 +93,7 @@ __FBSDID("$FreeBSD$"); #include <dev/usb/serial/usb_serial.h> -#if USB_DEBUG +#ifdef USB_DEBUG static int ubsa_debug = 0; SYSCTL_NODE(_hw_usb, OID_AUTO, ubsa, CTLFLAG_RW, 0, "USB ubsa"); @@ -405,9 +405,8 @@ ubsa_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff) static int ubsa_pre_param(struct ucom_softc *ucom, struct termios *t) { - struct ubsa_softc *sc = ucom->sc_parent; - DPRINTF("sc = %p\n", sc); + DPRINTF("sc = %p\n", ucom->sc_parent); switch (t->c_ospeed) { case B0: |