Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 94e10bfb authored by Johannes Berg's avatar Johannes Berg Committed by David S. Miller
Browse files

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: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b2268016
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;