Commit dd916148 authored by Jannik Becher's avatar Jannik Becher Committed by Greg Kroah-Hartman

staging: rtl8712: casted variables to __le32

Fixed a sparse warning.
Casting __le32 variables to the right type.
Signed-off-by: default avatarJannik Becher <becher.jannik@gmail.com>
Tested-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bcb91a5c
...@@ -192,7 +192,7 @@ void r8712_wep_encrypt(struct _adapter *padapter, u8 *pxmitframe) ...@@ -192,7 +192,7 @@ void r8712_wep_encrypt(struct _adapter *padapter, u8 *pxmitframe)
length = pattrib->last_txcmdsz - pattrib-> length = pattrib->last_txcmdsz - pattrib->
hdrlen - pattrib->iv_len - hdrlen - pattrib->iv_len -
pattrib->icv_len; pattrib->icv_len;
*((u32 *)crc) = cpu_to_le32(getcrc32( *((__le32 *)crc) = cpu_to_le32(getcrc32(
payload, length)); payload, length));
arcfour_init(&mycontext, wepkey, 3 + keylength); arcfour_init(&mycontext, wepkey, 3 + keylength);
arcfour_encrypt(&mycontext, payload, payload, arcfour_encrypt(&mycontext, payload, payload,
...@@ -203,7 +203,7 @@ void r8712_wep_encrypt(struct _adapter *padapter, u8 *pxmitframe) ...@@ -203,7 +203,7 @@ void r8712_wep_encrypt(struct _adapter *padapter, u8 *pxmitframe)
length = pxmitpriv->frag_len - length = pxmitpriv->frag_len -
pattrib->hdrlen - pattrib->iv_len - pattrib->hdrlen - pattrib->iv_len -
pattrib->icv_len; pattrib->icv_len;
*((u32 *)crc) = cpu_to_le32(getcrc32( *((__le32 *)crc) = cpu_to_le32(getcrc32(
payload, length)); payload, length));
arcfour_init(&mycontext, wepkey, 3 + keylength); arcfour_init(&mycontext, wepkey, 3 + keylength);
arcfour_encrypt(&mycontext, payload, payload, arcfour_encrypt(&mycontext, payload, payload,
...@@ -248,7 +248,7 @@ void r8712_wep_decrypt(struct _adapter *padapter, u8 *precvframe) ...@@ -248,7 +248,7 @@ void r8712_wep_decrypt(struct _adapter *padapter, u8 *precvframe)
arcfour_init(&mycontext, wepkey, 3 + keylength); arcfour_init(&mycontext, wepkey, 3 + keylength);
arcfour_encrypt(&mycontext, payload, payload, length); arcfour_encrypt(&mycontext, payload, payload, length);
/* calculate icv and compare the icv */ /* calculate icv and compare the icv */
*((u32 *)crc) = cpu_to_le32(getcrc32(payload, length - 4)); *((__le32 *)crc) = cpu_to_le32(getcrc32(payload, length - 4));
} }
} }
...@@ -616,7 +616,7 @@ u32 r8712_tkip_encrypt(struct _adapter *padapter, u8 *pxmitframe) ...@@ -616,7 +616,7 @@ u32 r8712_tkip_encrypt(struct _adapter *padapter, u8 *pxmitframe)
pattrib->hdrlen - pattrib->hdrlen -
pattrib->iv_len - pattrib->iv_len -
pattrib->icv_len; pattrib->icv_len;
*((u32 *)crc) = cpu_to_le32( *((__le32 *)crc) = cpu_to_le32(
getcrc32(payload, length)); getcrc32(payload, length));
arcfour_init(&mycontext, rc4key, 16); arcfour_init(&mycontext, rc4key, 16);
arcfour_encrypt(&mycontext, payload, arcfour_encrypt(&mycontext, payload,
...@@ -628,7 +628,7 @@ u32 r8712_tkip_encrypt(struct _adapter *padapter, u8 *pxmitframe) ...@@ -628,7 +628,7 @@ u32 r8712_tkip_encrypt(struct _adapter *padapter, u8 *pxmitframe)
pattrib->hdrlen - pattrib->hdrlen -
pattrib->iv_len - pattrib->iv_len -
pattrib->icv_len; pattrib->icv_len;
*((u32 *)crc) = cpu_to_le32(getcrc32( *((__le32 *)crc) = cpu_to_le32(getcrc32(
payload, length)); payload, length));
arcfour_init(&mycontext, rc4key, 16); arcfour_init(&mycontext, rc4key, 16);
arcfour_encrypt(&mycontext, payload, arcfour_encrypt(&mycontext, payload,
...@@ -696,7 +696,7 @@ u32 r8712_tkip_decrypt(struct _adapter *padapter, u8 *precvframe) ...@@ -696,7 +696,7 @@ u32 r8712_tkip_decrypt(struct _adapter *padapter, u8 *precvframe)
/* 4 decrypt payload include icv */ /* 4 decrypt payload include icv */
arcfour_init(&mycontext, rc4key, 16); arcfour_init(&mycontext, rc4key, 16);
arcfour_encrypt(&mycontext, payload, payload, length); arcfour_encrypt(&mycontext, payload, payload, length);
*((u32 *)crc) = cpu_to_le32(getcrc32(payload, *((__le32 *)crc) = cpu_to_le32(getcrc32(payload,
length - 4)); length - 4));
if (crc[3] != payload[length - 1] || if (crc[3] != payload[length - 1] ||
crc[2] != payload[length - 2] || crc[2] != payload[length - 2] ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment