staging: rtl8723bs: hal: rtl8723b_phycfg.c: Remove unnecessary parentheses
Challenge suggested by coccinelle. Remove unnecessary parentheses around an expression. Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
13b7e0139b
commit
eb322b764f
|
@ -827,7 +827,7 @@ static u8 phy_GetSecondaryChnl_8723B(struct adapter *Adapter)
|
||||||
}
|
}
|
||||||
|
|
||||||
RT_TRACE(_module_hal_init_c_, _drv_info_, ("SCMapping: SC Value %x\n", ((SCSettingOf40 << 4) | SCSettingOf20)));
|
RT_TRACE(_module_hal_init_c_, _drv_info_, ("SCMapping: SC Value %x\n", ((SCSettingOf40 << 4) | SCSettingOf20)));
|
||||||
return ((SCSettingOf40 << 4) | SCSettingOf20);
|
return (SCSettingOf40 << 4) | SCSettingOf20;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void phy_PostSetBwMode8723B(struct adapter *Adapter)
|
static void phy_PostSetBwMode8723B(struct adapter *Adapter)
|
||||||
|
|
Loading…
Reference in New Issue