mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 17:03:47 -04:00
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:
committed by
Greg Kroah-Hartman
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)));
|
||||
return ((SCSettingOf40 << 4) | SCSettingOf20);
|
||||
return (SCSettingOf40 << 4) | SCSettingOf20;
|
||||
}
|
||||
|
||||
static void phy_PostSetBwMode8723B(struct adapter *Adapter)
|
||||
|
||||
Reference in New Issue
Block a user