summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000
diff options
context:
space:
mode:
authorPunit Vara2015-10-25 00:31:25 +0200
committerGreg Kroah-Hartman2015-10-25 20:12:54 +0100
commit047e6646579c2853afba0111f573796daf4fd485 (patch)
treec0f959e0f790ef0b54967b3a5a481646219981da /drivers/staging/wilc1000
parentstaging: rdma: amso1100: Drop unnecessary goto (diff)
downloadkernel-qcow2-linux-047e6646579c2853afba0111f573796daf4fd485.tar.gz
kernel-qcow2-linux-047e6646579c2853afba0111f573796daf4fd485.tar.xz
kernel-qcow2-linux-047e6646579c2853afba0111f573796daf4fd485.zip
Staging: wilc1000: Remove boolean comparision
This patch is to the host_interface.c file that fixes up following warning reported by coccicheck: WARNING: Comparison to bool Boolean tests do not need explicit comparison to true or false Signed-off-by: Punit Vara <punitvara@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000')
-rw-r--r--drivers/staging/wilc1000/host_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 4c7e1e4adc7d..5f81eabc092d 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -1438,7 +1438,7 @@ static s32 Handle_RcvdNtwrkInfo(struct host_if_drv *hif_drv,
}
}
- if (bNewNtwrkFound == true) {
+ if (bNewNtwrkFound) {
PRINT_D(HOSTINF_DBG, "New network found\n");
if (hif_drv->strWILC_UsrScanReq.u32RcvdChCount < MAX_NUM_SCANNED_NETWORKS) {
@@ -2692,7 +2692,7 @@ static void Handle_PowerManagement(struct host_if_drv *hif_drv,
strWID.id = (u16)WID_POWER_MANAGEMENT;
- if (strPowerMgmtParam->enabled == true)
+ if (strPowerMgmtParam->enabled)
s8PowerMode = MIN_FAST_PS;
else
s8PowerMode = NO_POWERSAVE;