summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/key.h
diff options
context:
space:
mode:
authorAndres More <more.andres@gmail.com>2013-02-12 20:36:28 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-02-15 10:46:44 -0800
commitdfdcc425975d06cbfcc9b5c0fad2f3af5476cd05 (patch)
treeed39806ba3b60cadae0e2eac7909e8afe6c1f458 /drivers/staging/vt6656/key.h
parentb6592810e4d9493781c187e482ab0fd5cc97893f (diff)
downloadop-kernel-dev-dfdcc425975d06cbfcc9b5c0fad2f3af5476cd05.zip
op-kernel-dev-dfdcc425975d06cbfcc9b5c0fad2f3af5476cd05.tar.gz
staging: vt6656: replace custom BOOL definition with bool
Checkpatch findings were not resolved, just make direct replacement plus a couple of conflicting types in declarations. sed -i 's/\bBOOL\b/bool/g' drivers/staging/vt6656/*.[ch] Signed-off-by: Andres More <more.andres@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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/vt6656/key.h b/drivers/staging/vt6656/key.h
index 8889423..7ecddcd 100644
--- a/drivers/staging/vt6656/key.h
+++ b/drivers/staging/vt6656/key.h
@@ -57,7 +57,7 @@
typedef struct tagSKeyItem
{
- BOOL bKeyValid;
+ bool bKeyValid;
u32 uKeyLength;
BYTE abyKey[MAX_KEY_LEN];
u64 KeyRSC;
@@ -76,9 +76,9 @@ typedef struct tagSKeyTable
SKeyItem PairwiseKey;
SKeyItem GroupKey[MAX_GROUP_KEY]; //64*5 = 320, 320+8=328
DWORD dwGTKeyIndex; // GroupTransmitKey Index
- BOOL bInUse;
+ bool bInUse;
WORD wKeyCtl;
- BOOL bSoftWEP;
+ bool bSoftWEP;
BYTE byReserved1[6];
} SKeyTable, *PSKeyTable; //352
OpenPOWER on IntegriCloud