mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
ASoC: rt5663: clarify expression
cppcheck warning: bitwise operation. Clarify expression with parentheses. [clarifyCondition] (pll_code.m_bp ? 0 : pll_code.m_code) << RT5663_PLL_M_SHIFT | ^ sound/soc/codecs/rt5663.c:2955:63: style: Boolean result is used in Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210302212527.55158-16-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
9fd72391ae
commit
ca1107d305
@ -2952,8 +2952,8 @@ static int rt5663_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
|
||||
snd_soc_component_write(component, RT5663_PLL_1,
|
||||
pll_code.n_code << RT5663_PLL_N_SHIFT | pll_code.k_code);
|
||||
snd_soc_component_write(component, RT5663_PLL_2,
|
||||
(pll_code.m_bp ? 0 : pll_code.m_code) << RT5663_PLL_M_SHIFT |
|
||||
pll_code.m_bp << RT5663_PLL_M_BP_SHIFT);
|
||||
((pll_code.m_bp ? 0 : pll_code.m_code) << RT5663_PLL_M_SHIFT) |
|
||||
(pll_code.m_bp << RT5663_PLL_M_BP_SHIFT));
|
||||
|
||||
rt5663->pll_in = freq_in;
|
||||
rt5663->pll_out = freq_out;
|
||||
|
Loading…
Reference in New Issue
Block a user