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/net/if_rue.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/net/if_rue.c')
-rw-r--r-- | sys/dev/usb/net/if_rue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/net/if_rue.c b/sys/dev/usb/net/if_rue.c index 3e77305..f0d1608 100644 --- a/sys/dev/usb/net/if_rue.c +++ b/sys/dev/usb/net/if_rue.c @@ -97,7 +97,7 @@ __FBSDID("$FreeBSD$"); #include <dev/usb/net/usb_ethernet.h> #include <dev/usb/net/if_ruereg.h> -#if USB_DEBUG +#ifdef USB_DEBUG static int rue_debug = 0; SYSCTL_NODE(_hw_usb, OID_AUTO, rue, CTLFLAG_RW, 0, "USB rue"); |