aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2008-07-01 10:44:50 +0300
committerJohn W. Linville <linville@tuxdriver.com>2008-07-08 10:21:35 -0400
commitebd74487d4b7a48ab8513ecfe3d321346d7c602e (patch)
treea6f1bd2f3449810fe94d2c9ecd45c0ef7fcc35e4 /net/mac80211/mlme.c
parentiwlwifi: request Tx of block ack request if necessary (diff)
downloadlinux-dev-ebd74487d4b7a48ab8513ecfe3d321346d7c602e.tar.xz
linux-dev-ebd74487d4b7a48ab8513ecfe3d321346d7c602e.zip
mac80211: fix warning: unused variable ifsta
This patch fixes warning unused variable ifsta when compiling without CONFIG_MAC80211_VERBOSE_DEBUG Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Acked-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to '')
-rw-r--r--net/mac80211/mlme.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index e080482b63cd..2a927089f4db 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -366,8 +366,10 @@ static u32 ieee80211_handle_protect_preamb(struct ieee80211_sub_if_data *sdata,
bool use_short_preamble)
{
struct ieee80211_bss_conf *bss_conf = &sdata->bss_conf;
+#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
struct ieee80211_if_sta *ifsta = &sdata->u.sta;
DECLARE_MAC_BUF(mac);
+#endif
u32 changed = 0;
if (use_protection != bss_conf->use_cts_prot) {