diff options
author | Charles Clément <caratorn@gmail.com> | 2010-08-01 17:15:50 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-02 18:17:57 -0700 |
commit | 7b6a001313a9b11a1f0985de05fff514db41d72d (patch) | |
tree | c5f5bdcb4fcef70b5a2613a6382a0cd065bda892 /drivers/staging/vt6655/key.c | |
parent | 5a5a2a6ad4aa2467bcc34fa50e85c2afc90bab05 (diff) |
Staging: vt6655: replace BOOL with in kernel bool
Signed-off-by: Charles Clément <caratorn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6655/key.c')
-rw-r--r-- | drivers/staging/vt6655/key.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/vt6655/key.c b/drivers/staging/vt6655/key.c index 67b07208215a..0ff8d7bbf2a7 100644 --- a/drivers/staging/vt6655/key.c +++ b/drivers/staging/vt6655/key.c @@ -131,7 +131,7 @@ void KeyvInitTable (PSKeyManagement pTable, unsigned long dwIoBase) * Return Value: true if found otherwise false * */ -BOOL KeybGetKey ( +bool KeybGetKey ( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwKeyIndex, @@ -189,7 +189,7 @@ BOOL KeybGetKey ( * Return Value: true if success otherwise false * */ -BOOL KeybSetKey ( +bool KeybSetKey ( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwKeyIndex, @@ -362,7 +362,7 @@ BOOL KeybSetKey ( * Return Value: true if success otherwise false * */ -BOOL KeybRemoveKey ( +bool KeybRemoveKey ( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwKeyIndex, @@ -435,7 +435,7 @@ BOOL KeybRemoveKey ( * Return Value: true if success otherwise false * */ -BOOL KeybRemoveAllKey ( +bool KeybRemoveAllKey ( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwIoBase @@ -517,7 +517,7 @@ void KeyvRemoveAllWEPKey ( * Return Value: true if found otherwise false * */ -BOOL KeybGetTransmitKey ( +bool KeybGetTransmitKey ( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwKeyType, @@ -597,7 +597,7 @@ BOOL KeybGetTransmitKey ( * Return Value: true if found otherwise false * */ -BOOL KeybCheckPairewiseKey ( +bool KeybCheckPairewiseKey ( PSKeyManagement pTable, PSKeyItem *pKey ) @@ -631,7 +631,7 @@ BOOL KeybCheckPairewiseKey ( * Return Value: true if success otherwise false * */ -BOOL KeybSetDefaultKey ( +bool KeybSetDefaultKey ( PSKeyManagement pTable, unsigned long dwKeyIndex, unsigned long uKeyLength, @@ -738,7 +738,7 @@ BOOL KeybSetDefaultKey ( * Return Value: true if success otherwise false * */ -BOOL KeybSetAllGroupKey ( +bool KeybSetAllGroupKey ( PSKeyManagement pTable, unsigned long dwKeyIndex, unsigned long uKeyLength, |