mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 22:52:19 +02:00
ASoC: rt1011: clarify expression
cppcheck warning:
sound/soc/codecs/rt1011.c:1781:63: style: Boolean result is used in
bitwise operation. Clarify expression with
parentheses. [clarifyCondition]
(pll_code.m_bp ? 0 : pll_code.m_code) << RT1011_PLL1_QM_SFT |
^
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20210302212527.55158-4-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7e66f16251
commit
5a24299265
|
|
@ -1778,8 +1778,9 @@ static int rt1011_set_component_pll(struct snd_soc_component *component,
|
|||
pll_code.n_code, pll_code.k_code);
|
||||
|
||||
snd_soc_component_write(component, RT1011_PLL_1,
|
||||
(pll_code.m_bp ? 0 : pll_code.m_code) << RT1011_PLL1_QM_SFT |
|
||||
pll_code.m_bp << RT1011_PLL1_BPM_SFT | pll_code.n_code);
|
||||
((pll_code.m_bp ? 0 : pll_code.m_code) << RT1011_PLL1_QM_SFT) |
|
||||
(pll_code.m_bp << RT1011_PLL1_BPM_SFT) |
|
||||
pll_code.n_code);
|
||||
snd_soc_component_write(component, RT1011_PLL_2,
|
||||
pll_code.k_code);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user