diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-07-16 01:44:13 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-22 20:29:54 (GMT) |
commit | e7827a7031a931c74c48e4a53f73ed862f0c8da0 (patch) | |
tree | 501131e8cb703585978432000b6f1fdb7d0d1658 /net/mac80211/mesh_plink.c | |
parent | 6b644e524bbd4089a28e0711de4f1cf2daa5db50 (diff) | |
download | linux-fsl-qoriq-e7827a7031a931c74c48e4a53f73ed862f0c8da0.tar.xz |
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/mesh_plink.c')
-rw-r--r-- | net/mac80211/mesh_plink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c index 9efeb1f..4a7e6d0 100644 --- a/net/mac80211/mesh_plink.c +++ b/net/mac80211/mesh_plink.c @@ -163,8 +163,8 @@ static int mesh_plink_frame_tx(struct net_device *dev, mgmt = (struct ieee80211_mgmt *) skb_put(skb, 25 + sizeof(mgmt->u.action.u.plink_action)); memset(mgmt, 0, 25 + sizeof(mgmt->u.action.u.plink_action)); - mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, - IEEE80211_STYPE_ACTION); + mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | + IEEE80211_STYPE_ACTION); memcpy(mgmt->da, da, ETH_ALEN); memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); /* BSSID is left zeroed, wildcard value */ |