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

Commit 127c5cad authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown
Browse files

ASoC: fsl: imx-audmux: Use devm_clk_get()



By using devm_clk_get() we can save a call to clk_put().

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent c1963c37
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ static int imx_audmux_probe(struct platform_device *pdev)
		return PTR_ERR(pinctrl);
	}

	audmux_clk = clk_get(&pdev->dev, "audmux");
	audmux_clk = devm_clk_get(&pdev->dev, "audmux");
	if (IS_ERR(audmux_clk)) {
		dev_dbg(&pdev->dev, "cannot get clock: %ld\n",
				PTR_ERR(audmux_clk));
@@ -282,7 +282,6 @@ static int imx_audmux_remove(struct platform_device *pdev)
{
	if (audmux_type == IMX31_AUDMUX)
		audmux_debugfs_remove();
	clk_put(audmux_clk);

	return 0;
}