summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6656/key.h
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2012-11-28 21:11:02 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-07 11:08:13 -0800
commit7c65fa2a4c176c9bfab1ef954c4cef005dd9fb8b (patch)
tree4ba8b5ccff64348dc78072133591eb5f03862ef9 /drivers/staging/vt6656/key.h
parent1901ab629279499249dfe3a26b0a31f0af8efca5 (diff)
staging: vt6656: Remove QWORD from source and replace with u64.
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/key.h')
-rw-r--r--drivers/staging/vt6656/key.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/vt6656/key.h b/drivers/staging/vt6656/key.h
index bd35d39621ae..863db7cb590f 100644
--- a/drivers/staging/vt6656/key.h
+++ b/drivers/staging/vt6656/key.h
@@ -60,7 +60,7 @@ typedef struct tagSKeyItem
BOOL bKeyValid;
u32 uKeyLength;
BYTE abyKey[MAX_KEY_LEN];
- QWORD KeyRSC;
+ u64 KeyRSC;
DWORD dwTSC47_16;
WORD wTSC15_0;
BYTE byCipherSuite;
@@ -108,7 +108,7 @@ BOOL KeybSetKey(
PBYTE pbyBSSID,
DWORD dwKeyIndex,
u32 uKeyLength,
- PQWORD pKeyRSC,
+ u64 *KeyRSC,
PBYTE pbyKey,
BYTE byKeyDecMode
);
@@ -147,7 +147,7 @@ BOOL KeybSetDefaultKey(
PSKeyManagement pTable,
DWORD dwKeyIndex,
u32 uKeyLength,
- PQWORD pKeyRSC,
+ u64 *KeyRSC,
PBYTE pbyKey,
BYTE byKeyDecMode
);
@@ -157,7 +157,7 @@ BOOL KeybSetAllGroupKey(
PSKeyManagement pTable,
DWORD dwKeyIndex,
u32 uKeyLength,
- PQWORD pKeyRSC,
+ u64 *KeyRSC,
PBYTE pbyKey,
BYTE byKeyDecMode
);