Unverified Commit 863b9179 authored by Matthias Kaehlcke's avatar Matthias Kaehlcke Committed by Mark Brown
Browse files

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: default avatarMatthias Kaehlcke <mka@chromium.org>
Reviewed-by: default avatarDouglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20221129001633.v2.1.I8d1993f41f0da1eac0ecba321678ac489f9c0b9b@changeid


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent a3a96e93
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -165,15 +165,9 @@ static int sc7180_lpass_exit(struct platform_device *pdev)

static int sc7180_lpass_dev_resume(struct device *dev)
{
	int ret = 0;
	struct lpass_data *drvdata = dev_get_drvdata(dev);

	ret = clk_bulk_prepare_enable(drvdata->num_clks, drvdata->clks);
	if (ret) {
		dev_err(dev, "sc7180 clk prepare and enable failed\n");
		return ret;
	}
	return ret;
	return clk_bulk_prepare_enable(drvdata->num_clks, drvdata->clks);
}

static int sc7180_lpass_dev_suspend(struct device *dev)