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


Groups > linux.kernel > #1581085 > unrolled thread

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

Started bymaomao xu <albert008.xu@gmail.com>
First post2017-02-15 08:00 +0100
Last post2017-02-15 08:00 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

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

#1581085 — [PATCH] staging: rtl8192u: Fix sparse warnings about endianness

Frommaomao xu <albert008.xu@gmail.com>
Date2017-02-15 08:00 +0100
Subject[PATCH] staging: rtl8192u: Fix sparse warnings about endianness
Message-ID<tb1Jg-4Ig-3@gated-at.bofh.it>
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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web