summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/host_interface.c
diff options
context:
space:
mode:
authorChaehyun Lim <chaehyun.lim@gmail.com>2015-06-13 15:41:18 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-06-13 14:45:51 -0700
commit0be1eb7429b2d23db44e3d15589d20fce53e7043 (patch)
tree70213c68db7b9a6ad3869b9974f920cd3c8f66d7 /drivers/staging/wilc1000/host_interface.c
parent2c13087194700b16aada1a9112fad5b3861ac9fb (diff)
downloadop-kernel-dev-0be1eb7429b2d23db44e3d15589d20fce53e7043.zip
op-kernel-dev-0be1eb7429b2d23db44e3d15589d20fce53e7043.tar.gz
staging: wilc1000: remove BOOL_T typedef
Remove BOOL_T typedef. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/host_interface.c')
-rw-r--r--drivers/staging/wilc1000/host_interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 17ab5cd..ca59f1b 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -7698,7 +7698,7 @@ static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo)
/* HT Cap. IE */
else if (pu8IEs[index] == HT_CAPABILITY_IE) {
/* if IE found set the flag */
- pNewJoinBssParam->ht_capable = BTRUE;
+ pNewJoinBssParam->ht_capable = true;
index += pu8IEs[index + 1] + 2; /* ID,Length bytes and IE body */
/* PRINT_D(HOSTINF_DBG,"HT_CAPABALE\n"); */
continue;
@@ -7709,11 +7709,11 @@ static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo)
((pu8IEs[index + 6] == 0x00) || (pu8IEs[index + 6] == 0x01)) && /* OUI Sub Type */
(pu8IEs[index + 7] == 0x01)) {
/* Presence of WMM Info/Param element indicates WMM capability */
- pNewJoinBssParam->wmm_cap = BTRUE;
+ pNewJoinBssParam->wmm_cap = true;
/* Check if Bit 7 is set indicating U-APSD capability */
if (pu8IEs[index + 8] & (1 << 7)) {
- pNewJoinBssParam->uapsd_cap = BTRUE;
+ pNewJoinBssParam->uapsd_cap = true;
}
index += pu8IEs[index + 1] + 2;
continue;
OpenPOWER on IntegriCloud