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:
Malcolm Priestley
2014-03-22 09:01:25 +00:00
committed by Greg Kroah-Hartman
parent fb453db9bf
commit 2fbb230c8a

View File

@@ -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;