mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
ASoC: rt1305: clarify expression
cppcheck warning: sound/soc/codecs/rt1305.c:853:63: style: Boolean result is used in bitwise operation. Clarify expression with parentheses. [clarifyCondition] (pll_code.m_bp ? 0 : pll_code.m_code) << RT1305_PLL_1_M_SFT | ^ Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210302212527.55158-7-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
a426017ed5
commit
9e884eed54
@ -850,8 +850,8 @@ static int rt1305_set_component_pll(struct snd_soc_component *component,
|
||||
pll_code.n_code, pll_code.k_code);
|
||||
|
||||
snd_soc_component_write(component, RT1305_PLL1_1,
|
||||
(pll_code.m_bp ? 0 : pll_code.m_code) << RT1305_PLL_1_M_SFT |
|
||||
pll_code.m_bp << RT1305_PLL_1_M_BYPASS_SFT |
|
||||
((pll_code.m_bp ? 0 : pll_code.m_code) << RT1305_PLL_1_M_SFT) |
|
||||
(pll_code.m_bp << RT1305_PLL_1_M_BYPASS_SFT) |
|
||||
pll_code.n_code);
|
||||
snd_soc_component_write(component, RT1305_PLL1_2,
|
||||
pll_code.k_code);
|
||||
|
Loading…
Reference in New Issue
Block a user