Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: qcom: lpass-sc7180: Delete redundant error log from _resume()

sc7180_lpass_dev_resume() logs an error if clk_bulk_prepare_enable()
fails. The clock framework already generates error logs if anything
goes wrong, so the logging in _resume() is redundant, drop it.

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20221129001633.v2.1.I8d1993f41f0da1eac0ecba321678ac489f9c0b9b@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Matthias Kaehlcke and committed by
Mark Brown
863b9179 a3a96e93

+1 -7
+1 -7
sound/soc/qcom/lpass-sc7180.c
··· 165 165 166 166 static int sc7180_lpass_dev_resume(struct device *dev) 167 167 { 168 - int ret = 0; 169 168 struct lpass_data *drvdata = dev_get_drvdata(dev); 170 169 171 - ret = clk_bulk_prepare_enable(drvdata->num_clks, drvdata->clks); 172 - if (ret) { 173 - dev_err(dev, "sc7180 clk prepare and enable failed\n"); 174 - return ret; 175 - } 176 - return ret; 170 + return clk_bulk_prepare_enable(drvdata->num_clks, drvdata->clks); 177 171 } 178 172 179 173 static int sc7180_lpass_dev_suspend(struct device *dev)