Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1581085

[PATCH] staging: rtl8192u: Fix sparse warnings about endianness

From maomao xu <albert008.xu@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] staging: rtl8192u: Fix sparse warnings about endianness
Date 2017-02-15 08:00 +0100
Message-ID <tb1Jg-4Ig-3@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c:175:36: warning: incorrect type in assignment (different base types)
drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c:175:36:    expected unsigned short [unsigned] [short] [usertype] <noident>
drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c:175:36:    got restricted __be16 [usertype] <noident>

Signed-off-by: maomao xu <albert008.xu@gmail.com>

diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c
index 949c496..a1da90a 100644
--- a/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c
+++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c
@@ -172,7 +172,7 @@ static inline int ieee80211_put_snap(u8 *data, u16 h_proto)
 	snap->oui[1] = oui[1];
 	snap->oui[2] = oui[2];
 
-	*(u16 *)(data + SNAP_SIZE) = htons(h_proto);
+	put_unaligned_be16(h_proto, data + SNAP_SIZE);
 
 	return SNAP_SIZE + sizeof(u16);
 }
-- 
1.7.9.5

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH] staging: rtl8192u: Fix sparse warnings about endianness maomao xu <albert008.xu@gmail.com> - 2017-02-15 08:00 +0100

csiph-web