summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/key.h
diff options
context:
space:
mode:
authorMalcolm Priestley2012-11-11 16:49:59 +0100
committerGreg Kroah-Hartman2012-11-13 21:51:31 +0100
commitc0d05b305b00c698b0a8c1b3d46c9380bce9db45 (patch)
tree75ec655d7cf581fb9b43eb60651e23b31ec0d303 /drivers/staging/vt6656/key.h
parentstaging: vt6656: 64 bit fixes: fix long warning messages. (diff)
downloadkernel-qcow2-linux-c0d05b305b00c698b0a8c1b3d46c9380bce9db45.tar.gz
kernel-qcow2-linux-c0d05b305b00c698b0a8c1b3d46c9380bce9db45.tar.xz
kernel-qcow2-linux-c0d05b305b00c698b0a8c1b3d46c9380bce9db45.zip
staging: vt6656: 64bit fixes: key.c/h change unsigned long to u32
Fixes long issues. 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 f749c7a027d3..bd35d39621ae 100644
--- a/drivers/staging/vt6656/key.h
+++ b/drivers/staging/vt6656/key.h
@@ -58,7 +58,7 @@
typedef struct tagSKeyItem
{
BOOL bKeyValid;
- unsigned long uKeyLength;
+ u32 uKeyLength;
BYTE abyKey[MAX_KEY_LEN];
QWORD KeyRSC;
DWORD dwTSC47_16;
@@ -107,7 +107,7 @@ BOOL KeybSetKey(
PSKeyManagement pTable,
PBYTE pbyBSSID,
DWORD dwKeyIndex,
- unsigned long uKeyLength,
+ u32 uKeyLength,
PQWORD pKeyRSC,
PBYTE pbyKey,
BYTE byKeyDecMode
@@ -146,7 +146,7 @@ BOOL KeybSetDefaultKey(
void *pDeviceHandler,
PSKeyManagement pTable,
DWORD dwKeyIndex,
- unsigned long uKeyLength,
+ u32 uKeyLength,
PQWORD pKeyRSC,
PBYTE pbyKey,
BYTE byKeyDecMode
@@ -156,7 +156,7 @@ BOOL KeybSetAllGroupKey(
void *pDeviceHandler,
PSKeyManagement pTable,
DWORD dwKeyIndex,
- unsigned long uKeyLength,
+ u32 uKeyLength,
PQWORD pKeyRSC,
PBYTE pbyKey,
BYTE byKeyDecMode