Commit bb87c84c authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: remove unnecessary assingment from 'if' conditions

Cleanup patch to remove the unnecessary use of '==' check used in if
conditions.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1e194027
...@@ -885,13 +885,13 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val) ...@@ -885,13 +885,13 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val)
reg = 0; reg = 0;
} }
/* select VMM table 0 */ /* select VMM table 0 */
if ((val & SEL_VMM_TBL0) == SEL_VMM_TBL0) if (val & SEL_VMM_TBL0)
reg |= BIT(5); reg |= BIT(5);
/* select VMM table 1 */ /* select VMM table 1 */
if ((val & SEL_VMM_TBL1) == SEL_VMM_TBL1) if (val & SEL_VMM_TBL1)
reg |= BIT(6); reg |= BIT(6);
/* enable VMM */ /* enable VMM */
if ((val & EN_VMM) == EN_VMM) if (val & EN_VMM)
reg |= BIT(7); reg |= BIT(7);
if (reg) { if (reg) {
struct sdio_cmd52 cmd; struct sdio_cmd52 cmd;
...@@ -961,13 +961,13 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val) ...@@ -961,13 +961,13 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val)
vmm_ctl = 0; vmm_ctl = 0;
/* select VMM table 0 */ /* select VMM table 0 */
if ((val & SEL_VMM_TBL0) == SEL_VMM_TBL0) if (val & SEL_VMM_TBL0)
vmm_ctl |= BIT(0); vmm_ctl |= BIT(0);
/* select VMM table 1 */ /* select VMM table 1 */
if ((val & SEL_VMM_TBL1) == SEL_VMM_TBL1) if (val & SEL_VMM_TBL1)
vmm_ctl |= BIT(1); vmm_ctl |= BIT(1);
/* enable VMM */ /* enable VMM */
if ((val & EN_VMM) == EN_VMM) if (val & EN_VMM)
vmm_ctl |= BIT(2); vmm_ctl |= BIT(2);
if (vmm_ctl) { if (vmm_ctl) {
......
...@@ -1026,10 +1026,10 @@ static int wilc_spi_clear_int_ext(struct wilc *wilc, u32 val) ...@@ -1026,10 +1026,10 @@ static int wilc_spi_clear_int_ext(struct wilc *wilc, u32 val)
tbl_ctl = 0; tbl_ctl = 0;
/* select VMM table 0 */ /* select VMM table 0 */
if ((val & SEL_VMM_TBL0) == SEL_VMM_TBL0) if (val & SEL_VMM_TBL0)
tbl_ctl |= BIT(0); tbl_ctl |= BIT(0);
/* select VMM table 1 */ /* select VMM table 1 */
if ((val & SEL_VMM_TBL1) == SEL_VMM_TBL1) if (val & SEL_VMM_TBL1)
tbl_ctl |= BIT(1); tbl_ctl |= BIT(1);
ret = wilc_spi_write_reg(wilc, WILC_VMM_TBL_CTL, tbl_ctl); ret = wilc_spi_write_reg(wilc, WILC_VMM_TBL_CTL, tbl_ctl);
...@@ -1038,7 +1038,7 @@ static int wilc_spi_clear_int_ext(struct wilc *wilc, u32 val) ...@@ -1038,7 +1038,7 @@ static int wilc_spi_clear_int_ext(struct wilc *wilc, u32 val)
return ret; return ret;
} }
if ((val & EN_VMM) == EN_VMM) { if (val & EN_VMM) {
/* /*
* enable vmm transfer. * enable vmm transfer.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment