mirror of https://gitee.com/openkylin/linux.git
ASoC: rt5651: clarify expression
cppcheck warning: sound/soc/codecs/rt5659.c:3515:61: style: Boolean result is used in bitwise operation. Clarify expression with parentheses. [clarifyCondition] (pll_code.m_bp ? 0 : pll_code.m_code) << RT5659_PLL_M_SFT | ^ Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210302212527.55158-12-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
fa0eb20cb3
commit
33eaffe370
|
@ -1498,8 +1498,8 @@ static int rt5651_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
|
|||
snd_soc_component_write(component, RT5651_PLL_CTRL1,
|
||||
pll_code.n_code << RT5651_PLL_N_SFT | pll_code.k_code);
|
||||
snd_soc_component_write(component, RT5651_PLL_CTRL2,
|
||||
(pll_code.m_bp ? 0 : pll_code.m_code) << RT5651_PLL_M_SFT |
|
||||
pll_code.m_bp << RT5651_PLL_M_BP_SFT);
|
||||
((pll_code.m_bp ? 0 : pll_code.m_code) << RT5651_PLL_M_SFT) |
|
||||
(pll_code.m_bp << RT5651_PLL_M_BP_SFT));
|
||||
|
||||
rt5651->pll_in = freq_in;
|
||||
rt5651->pll_out = freq_out;
|
||||
|
|
Loading…
Reference in New Issue