mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 10:13:57 +08:00
staging: vt6656: 64 bit fixes pdwIV is now u32
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c0d05b305b
commit
d5bbef7c94
@ -355,7 +355,7 @@ s_vFillTxKey (
|
||||
}
|
||||
// Append IV after Mac Header
|
||||
*pdwIV &= WEP_IV_MASK;//00000000 11111111 11111111 11111111
|
||||
*pdwIV |= (unsigned long)pDevice->byKeyIndex << 30;
|
||||
*pdwIV |= (u32)pDevice->byKeyIndex << 30;
|
||||
*pdwIV = cpu_to_le32(*pdwIV);
|
||||
pDevice->dwIVCounter++;
|
||||
if (pDevice->dwIVCounter > WEP_IV_MASK) {
|
||||
|
Loading…
Reference in New Issue
Block a user