diff options
author | Andrew Thompson <thompsa@FreeBSD.org> | 2009-06-13 04:56:45 +0000 |
---|---|---|
committer | Andrew Thompson <thompsa@FreeBSD.org> | 2009-06-13 04:56:45 +0000 |
commit | a8675cae2b38ae9c7abb981e4a11e21a757680e6 (patch) | |
tree | 1cf734909d17e7de2e8766e7347daeb93106a5fd /sys/dev/usb/wlan/if_urtw.c | |
parent | ef39345566c3ee9fe0313d57019f5e9b67f3ce73 (diff) | |
download | src-a8675cae2b38ae9c7abb981e4a11e21a757680e6.tar.gz src-a8675cae2b38ae9c7abb981e4a11e21a757680e6.zip |
Make variables static where appropriate.
Found by: cscout
Notes
Notes:
svn path=/head/; revision=194099
Diffstat (limited to 'sys/dev/usb/wlan/if_urtw.c')
-rw-r--r-- | sys/dev/usb/wlan/if_urtw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/wlan/if_urtw.c b/sys/dev/usb/wlan/if_urtw.c index 87f923e036ca..883c1d97aa8a 100644 --- a/sys/dev/usb/wlan/if_urtw.c +++ b/sys/dev/usb/wlan/if_urtw.c @@ -93,7 +93,7 @@ enum { (void) sc; \ } while (0) #endif -int urtw_preamble_mode = URTW_PREAMBLE_MODE_LONG; +static int urtw_preamble_mode = URTW_PREAMBLE_MODE_LONG; SYSCTL_INT(_hw_usb_urtw, OID_AUTO, preamble_mode, CTLFLAG_RW, &urtw_preamble_mode, 0, "set the preable mode (long or short)"); TUNABLE_INT("hw.usb.urtw.preamble_mode", &urtw_preamble_mode); |