asoc: Return the correct clk_div value

Incorrect check for return value of clk_div_get
causes CLK_DIV2 setting being missed. Fix the
return value check to address this.

Change-Id: Ic1b6761ab836a38c657ac7e43efda0e2f23c5fee
Signed-off-by: Aditya Bavanari <abavanar@codeaurora.org>
This commit is contained in:
Aditya Bavanari
2021-07-30 12:17:12 +05:30
committed by Gerrit - the friendly Code Review server
parent 02c5a3aca7
commit a415d7381d
2 changed files with 3 additions and 3 deletions

View File

@@ -472,7 +472,7 @@ static u8 lpass_cdc_dmic_clk_div_get(struct snd_soc_component *component,
if (priv->macro_params[macro].clk_div_get) {
ret = priv->macro_params[macro].clk_div_get(component);
if (ret > 0)
if (ret >= 0)
return ret;
}