Unverified Commit c8618d65 authored by Xiaomeng Tong's avatar Xiaomeng Tong Committed by Mark Brown
Browse files

ASoC: rt5682: fix an incorrect NULL check on list iterator



The bug is here:
	if (!dai) {

The list iterator value 'dai' will *always* be set and non-NULL
by for_each_component_dais(), so it is incorrect to assume that
the iterator value will be NULL if the list is empty or no element
is found (In fact, it will be a bogus pointer to an invalid struct
object containing the HEAD). Otherwise it will bypass the check
'if (!dai) {' (never call dev_err() and never return -ENODEV;)
and lead to invalid memory access lately when calling
'rt5682_set_bclk1_ratio(dai, factor);'.

To fix the bug, just return rt5682_set_bclk1_ratio(dai, factor);
when found the 'dai', otherwise dev_err() and return -ENODEV;

Cc: stable@vger.kernel.org
Fixes: ebbfabc1 ("ASoC: rt5682: Add CCF usage for providing I2S clks")
Signed-off-by: default avatarXiaomeng Tong <xiam0nd.tong@gmail.com>
Link: https://lore.kernel.org/r/20220327081002.12684-1-xiam0nd.tong@gmail.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent f730a46b
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -2822,16 +2822,13 @@ static int rt5682_bclk_set_rate(struct clk_hw *hw, unsigned long rate,

	for_each_component_dais(component, dai)
		if (dai->id == RT5682_AIF1)
			break;
	if (!dai) {
			return rt5682_set_bclk1_ratio(dai, factor);

	dev_err(rt5682->i2c_dev, "dai %d not found in component\n",
		RT5682_AIF1);
	return -ENODEV;
}

	return rt5682_set_bclk1_ratio(dai, factor);
}

static const struct clk_ops rt5682_dai_clk_ops[RT5682_DAI_NUM_CLKS] = {
	[RT5682_DAI_WCLK_IDX] = {
		.prepare = rt5682_wclk_prepare,