mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-13 11:20:12 -04:00
staging: vt6656: rxtx: s_vFillTxKey Fix base type pdwExtIV
Use base type to __le32. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fb453db9bf
commit
2fbb230c8a
@@ -182,7 +182,7 @@ static void s_vFillTxKey(struct vnt_private *pDevice,
|
||||
{
|
||||
u8 *pbyBuf = (u8 *)&fifo_head->adwTxKey[0];
|
||||
__le32 *pdwIV = (__le32 *)pbyIVHead;
|
||||
u32 *pdwExtIV = (u32 *)((u8 *)pbyIVHead + 4);
|
||||
__le32 *pdwExtIV = (__le32 *)((u8 *)pbyIVHead + 4);
|
||||
struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyHdrBuf;
|
||||
__le32 rev_iv_counter;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user