diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-07-15 21:44:13 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-22 16:29:54 -0400 |
commit | e7827a7031a931c74c48e4a53f73ed862f0c8da0 (patch) | |
tree | 501131e8cb703585978432000b6f1fdb7d0d1658 /net/mac80211/tx.c | |
parent | 6b644e524bbd4089a28e0711de4f1cf2daa5db50 (diff) |
mac80211: remove IEEE80211_FC helper
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 24146f3387a7..9c60dedc3687 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c | |||
@@ -1889,8 +1889,8 @@ struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, | |||
1889 | goto out; | 1889 | goto out; |
1890 | 1890 | ||
1891 | hdr = (struct ieee80211_hdr *) skb->data; | 1891 | hdr = (struct ieee80211_hdr *) skb->data; |
1892 | hdr->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, | 1892 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
1893 | IEEE80211_STYPE_BEACON); | 1893 | IEEE80211_STYPE_BEACON); |
1894 | 1894 | ||
1895 | num_beacons = &ifsta->num_beacons; | 1895 | num_beacons = &ifsta->num_beacons; |
1896 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { | 1896 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { |