forked from Minki/linux
staging: wilc1000: remove unnecessary assingment from 'if' conditions
Cleanup patch to remove the unnecessary use of '==' check used in if conditions. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1e194027ad
commit
bb87c84cd9
@ -885,13 +885,13 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val)
|
||||
reg = 0;
|
||||
}
|
||||
/* select VMM table 0 */
|
||||
if ((val & SEL_VMM_TBL0) == SEL_VMM_TBL0)
|
||||
if (val & SEL_VMM_TBL0)
|
||||
reg |= BIT(5);
|
||||
/* select VMM table 1 */
|
||||
if ((val & SEL_VMM_TBL1) == SEL_VMM_TBL1)
|
||||
if (val & SEL_VMM_TBL1)
|
||||
reg |= BIT(6);
|
||||
/* enable VMM */
|
||||
if ((val & EN_VMM) == EN_VMM)
|
||||
if (val & EN_VMM)
|
||||
reg |= BIT(7);
|
||||
if (reg) {
|
||||
struct sdio_cmd52 cmd;
|
||||
@ -961,13 +961,13 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val)
|
||||
|
||||
vmm_ctl = 0;
|
||||
/* select VMM table 0 */
|
||||
if ((val & SEL_VMM_TBL0) == SEL_VMM_TBL0)
|
||||
if (val & SEL_VMM_TBL0)
|
||||
vmm_ctl |= BIT(0);
|
||||
/* select VMM table 1 */
|
||||
if ((val & SEL_VMM_TBL1) == SEL_VMM_TBL1)
|
||||
if (val & SEL_VMM_TBL1)
|
||||
vmm_ctl |= BIT(1);
|
||||
/* enable VMM */
|
||||
if ((val & EN_VMM) == EN_VMM)
|
||||
if (val & EN_VMM)
|
||||
vmm_ctl |= BIT(2);
|
||||
|
||||
if (vmm_ctl) {
|
||||
|
@ -1026,10 +1026,10 @@ static int wilc_spi_clear_int_ext(struct wilc *wilc, u32 val)
|
||||
|
||||
tbl_ctl = 0;
|
||||
/* select VMM table 0 */
|
||||
if ((val & SEL_VMM_TBL0) == SEL_VMM_TBL0)
|
||||
if (val & SEL_VMM_TBL0)
|
||||
tbl_ctl |= BIT(0);
|
||||
/* select VMM table 1 */
|
||||
if ((val & SEL_VMM_TBL1) == SEL_VMM_TBL1)
|
||||
if (val & SEL_VMM_TBL1)
|
||||
tbl_ctl |= BIT(1);
|
||||
|
||||
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)
|
||||
return ret;
|
||||
}
|
||||
|
||||
if ((val & EN_VMM) == EN_VMM) {
|
||||
if (val & EN_VMM) {
|
||||
/*
|
||||
* enable vmm transfer.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user