aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin P. Mattock <justinmattock@gmail.com>2010-06-16 01:33:51 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-06-18 15:05:12 -0400
commit1baf8a90bd5ad61bc0c55521cc097586531e7eb7 (patch)
treef6a5a8b01e879fa37aed2629b74cfe4d73ff80dd
parentdeda484cd7aacecb5e372f9f649a9b7a9eaebf30 (diff)
wireless:hostap_ap.c Fix warning: variable 'fc' set but not used
The below patch fixes a warning message when compiling with gcc 4.6.0 CC [M] drivers/net/wireless/hostap/hostap_ap.o drivers/net/wireless/hostap/hostap_ap.c: In function 'hostap_ap_tx_cb_assoc': drivers/net/wireless/hostap/hostap_ap.c:691:6: warning: variable 'fc' set but not used Signed-off-by: Justin P. Mattock <justinmattock@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/hostap/hostap_ap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/hostap/hostap_ap.c b/drivers/net/wireless/hostap/hostap_ap.c
index 231dbd77f5f5..9cadaa296fac 100644
--- a/drivers/net/wireless/hostap/hostap_ap.c
+++ b/drivers/net/wireless/hostap/hostap_ap.c
@@ -688,7 +688,7 @@ static void hostap_ap_tx_cb_assoc(struct sk_buff *skb, int ok, void *data)
688 struct ap_data *ap = data; 688 struct ap_data *ap = data;
689 struct net_device *dev = ap->local->dev; 689 struct net_device *dev = ap->local->dev;
690 struct ieee80211_hdr *hdr; 690 struct ieee80211_hdr *hdr;
691 u16 fc, status; 691 u16 status;
692 __le16 *pos; 692 __le16 *pos;
693 struct sta_info *sta = NULL; 693 struct sta_info *sta = NULL;
694 char *txt = NULL; 694 char *txt = NULL;
@@ -699,7 +699,6 @@ static void hostap_ap_tx_cb_assoc(struct sk_buff *skb, int ok, void *data)
699 } 699 }
700 700
701 hdr = (struct ieee80211_hdr *) skb->data; 701 hdr = (struct ieee80211_hdr *) skb->data;
702 fc = le16_to_cpu(hdr->frame_control);
703 if ((!ieee80211_is_assoc_resp(hdr->frame_control) && 702 if ((!ieee80211_is_assoc_resp(hdr->frame_control) &&
704 !ieee80211_is_reassoc_resp(hdr->frame_control)) || 703 !ieee80211_is_reassoc_resp(hdr->frame_control)) ||
705 skb->len < IEEE80211_MGMT_HDR_LEN + 4) { 704 skb->len < IEEE80211_MGMT_HDR_LEN + 4) {