From: Annaliese McDermond Date: Tue, 9 Apr 2019 04:41:59 +0000 (-0700) Subject: ASoC: tlv320aic32x4: Fix potential uninitialized variable X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a23e34c064b933cf5f24e443f86bbfdd624d2e8b;p=linux.git ASoC: tlv320aic32x4: Fix potential uninitialized variable Fix compiler warning about uninitialized variable reported by Stephen Rothwell . Signed-off-by: Annaliese McDermond Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/tlv320aic32x4-clk.c b/sound/soc/codecs/tlv320aic32x4-clk.c index 9e4899eb1d8e8..156c153c12ab8 100644 --- a/sound/soc/codecs/tlv320aic32x4-clk.c +++ b/sound/soc/codecs/tlv320aic32x4-clk.c @@ -82,7 +82,7 @@ static int clk_aic32x4_pll_get_muldiv(struct clk_aic32x4 *pll, int ret; ret = regmap_read(pll->regmap, AIC32X4_PLLPR, &val); - if (ret) + if (ret < 0) return ret; settings->r = val & AIC32X4_PLL_R_MASK; settings->p = (val & AIC32X4_PLL_P_MASK) >> AIC32X4_PLL_P_SHIFT;