Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -192,7 +192,7 @@ void r8712_wep_encrypt(struct _adapter *padapter, u8 *pxmitframe)
				length = pattrib->last_txcmdsz - pattrib->
					 hdrlen - pattrib->iv_len -
					 pattrib->icv_len;
				*((u32 *)crc) = cpu_to_le32(getcrc32(
				*((__le32 *)crc) = cpu_to_le32(getcrc32(
						payload, length));
				arcfour_init(&mycontext, wepkey, 3 + keylength);
				arcfour_encrypt(&mycontext, payload, payload,
@@ -203,7 +203,7 @@ void r8712_wep_encrypt(struct _adapter *padapter, u8 *pxmitframe)
				length = pxmitpriv->frag_len -
					 pattrib->hdrlen - pattrib->iv_len -
					 pattrib->icv_len;
				*((u32 *)crc) = cpu_to_le32(getcrc32(
				*((__le32 *)crc) = cpu_to_le32(getcrc32(
						payload, length));
				arcfour_init(&mycontext, wepkey, 3 + keylength);
				arcfour_encrypt(&mycontext, payload, payload,
@@ -248,7 +248,7 @@ void r8712_wep_decrypt(struct _adapter *padapter, u8 *precvframe)
		arcfour_init(&mycontext, wepkey, 3 + keylength);
		arcfour_encrypt(&mycontext, payload, payload,  length);
		/* 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)
					     pattrib->hdrlen -
					     pattrib->iv_len -
					     pattrib->icv_len;
					*((u32 *)crc) = cpu_to_le32(
					*((__le32 *)crc) = cpu_to_le32(
						getcrc32(payload, length));
					arcfour_init(&mycontext, rc4key, 16);
					arcfour_encrypt(&mycontext, payload,
@@ -628,7 +628,7 @@ u32 r8712_tkip_encrypt(struct _adapter *padapter, u8 *pxmitframe)
						 pattrib->hdrlen -
						 pattrib->iv_len -
						 pattrib->icv_len;
					*((u32 *)crc) = cpu_to_le32(getcrc32(
					*((__le32 *)crc) = cpu_to_le32(getcrc32(
							payload, length));
					arcfour_init(&mycontext, rc4key, 16);
					arcfour_encrypt(&mycontext, payload,
@@ -696,7 +696,7 @@ u32 r8712_tkip_decrypt(struct _adapter *padapter, u8 *precvframe)
			/* 4 decrypt payload include icv */
			arcfour_init(&mycontext, rc4key, 16);
			arcfour_encrypt(&mycontext, payload, payload, length);
			*((u32 *)crc) = cpu_to_le32(getcrc32(payload,
			*((__le32 *)crc) = cpu_to_le32(getcrc32(payload,
					length - 4));
			if (crc[3] != payload[length - 1] ||
			    crc[2] != payload[length - 2] ||