summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Finger2011-06-25 00:02:54 +0200
committerGreg Kroah-Hartman2011-07-06 04:59:48 +0200
commit4046dabb7992580da6ee6cadb938d15627e7676e (patch)
treeb8bbc6e10ff15badc229249af88462a3ae2b21d6
parentstaging: rtl8187se: Fix big-endian warning (diff)
downloadkernel-qcow2-linux-4046dabb7992580da6ee6cadb938d15627e7676e.tar.gz
kernel-qcow2-linux-4046dabb7992580da6ee6cadb938d15627e7676e.tar.xz
kernel-qcow2-linux-4046dabb7992580da6ee6cadb938d15627e7676e.zip
staging: rtl8192e: Fix big-endian warning
When compiling the rtl8192e driver from staging on a big-endian architecture, the following warning results: CC [M] drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.o drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c: In function 'ieee80211_probe_resp': drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c:781: warning: value computed is not used The warning is due to misuse of cpu_to_le16(). Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c
index 45e3cc1eb179..60e9a09d9330 100644
--- a/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c
+++ b/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c
@@ -777,7 +777,7 @@ static struct sk_buff* ieee80211_probe_resp(struct ieee80211_device *ieee, u8 *d
cpu_to_le16(ieee->current_network.capability & WLAN_CAPABILITY_SHORT_PREAMBLE); //add short preamble here
if(ieee->short_slot && (ieee->current_network.capability & WLAN_CAPABILITY_SHORT_SLOT))
- cpu_to_le16((beacon_buf->capability |= WLAN_CAPABILITY_SHORT_SLOT));
+ beacon_buf->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT);
crypt = ieee->crypt[ieee->tx_keyidx];
if (encrypt)