aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-10-25 22:16:23 +0200
committerDavid S. Miller <davem@sunset.davemloft.net>2007-11-10 21:58:41 -0800
commit94e10bfb8a7372df3ef2759c9ec2a37de2f24aca (patch)
tree6c808532ace86c7cb62491f15df48f4b7068959a /net
parent[PKT_SCHED] CLS_U32: Use ffs() instead of C code on hash mask to get first set bit. (diff)
downloadlinux-dev-94e10bfb8a7372df3ef2759c9ec2a37de2f24aca.tar.xz
linux-dev-94e10bfb8a7372df3ef2759c9ec2a37de2f24aca.zip
softmac: fix wext MLME request reason code endianness
The MLME request reason code is host-endian and our passing it to the low level functions is host-endian as well since they do the swapping. I noticed that the reason code 768 was sent (0x300) rather than 3 when wpa_supplicant terminates. This removes the superfluous cpu_to_le16() call. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/ieee80211/softmac/ieee80211softmac_wx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee80211/softmac/ieee80211softmac_wx.c b/net/ieee80211/softmac/ieee80211softmac_wx.c
index ac36767b56e8..e01b59aedc54 100644
--- a/net/ieee80211/softmac/ieee80211softmac_wx.c
+++ b/net/ieee80211/softmac/ieee80211softmac_wx.c
@@ -470,7 +470,7 @@ ieee80211softmac_wx_set_mlme(struct net_device *dev,
{
struct ieee80211softmac_device *mac = ieee80211_priv(dev);
struct iw_mlme *mlme = (struct iw_mlme *)extra;
- u16 reason = cpu_to_le16(mlme->reason_code);
+ u16 reason = mlme->reason_code;
struct ieee80211softmac_network *net;
int err = -EINVAL;