Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1cffe8c authored by Wei Yongjun's avatar Wei Yongjun Committed by Mark Brown
Browse files

ASoC: fsl-ssi: Add missing clk_disable_unprepare() on error in fsl_ssi_probe()



Add the missing clk_disable_unprepare() before return from
fsl_ssi_probe() in the request irq error handling case.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent d7fa7104
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1439,7 +1439,7 @@ static int fsl_ssi_probe(struct platform_device *pdev)
		if (ret < 0) {
			dev_err(&pdev->dev, "could not claim irq %u\n",
					ssi_private->irq);
			goto error_irqmap;
			goto error_clk;
		}
	}