Skip to content

Commit 502c807

Browse files
jannikbechergregkh
authored andcommitted
staging: rtl8712: fixed little endian problem
Fixed a sparse warning. Using function le16_to_cpus() to avoid double assignment. Signed-off-by: Jannik Becher <[email protected]> Tested-by: Larry Finger <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 6839bc8 commit 502c807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/staging/rtl8712/rtl871x_ioctl_linux.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ static noinline_for_stack char *translate_scan(struct _adapter *padapter,
199199
iwe.cmd = SIOCGIWMODE;
200200
memcpy((u8 *)&cap, r8712_get_capability_from_ie(pnetwork->network.IEs),
201201
2);
202-
cap = le16_to_cpu(cap);
202+
le16_to_cpus(&cap);
203203
if (cap & (WLAN_CAPABILITY_IBSS | WLAN_CAPABILITY_BSS)) {
204204
if (cap & WLAN_CAPABILITY_BSS)
205205
iwe.u.mode = (u32)IW_MODE_MASTER;

0 commit comments

Comments
 (0)