mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
ASoC: rt5677: clarify expression
cppcheck warning: sound/soc/codecs/rt5677.c:4571:61: style: Boolean result is used in bitwise operation. Clarify expression with parentheses. [clarifyCondition] (pll_code.m_bp ? 0 : pll_code.m_code) << RT5677_PLL_M_SFT | ^ Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210302212527.55158-21-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7ad9b8d28d
commit
ae052909d1
@ -4568,8 +4568,8 @@ static int rt5677_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
|
||||
regmap_write(rt5677->regmap, RT5677_PLL1_CTRL1,
|
||||
pll_code.n_code << RT5677_PLL_N_SFT | pll_code.k_code);
|
||||
regmap_write(rt5677->regmap, RT5677_PLL1_CTRL2,
|
||||
(pll_code.m_bp ? 0 : pll_code.m_code) << RT5677_PLL_M_SFT |
|
||||
pll_code.m_bp << RT5677_PLL_M_BP_SFT);
|
||||
((pll_code.m_bp ? 0 : pll_code.m_code) << RT5677_PLL_M_SFT) |
|
||||
(pll_code.m_bp << RT5677_PLL_M_BP_SFT));
|
||||
|
||||
rt5677->pll_in = freq_in;
|
||||
rt5677->pll_out = freq_out;
|
||||
|
Loading…
Reference in New Issue
Block a user