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

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

spi: fsl-dspi: add missing clk_disable_unprepare() in dspi_remove()



clock source is prepared and enabled by clk_prepare_enable()
in probe function, but no disable or unprepare in remove.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent b444d1df
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -536,6 +536,7 @@ static int dspi_remove(struct platform_device *pdev)

	/* Disconnect from the SPI framework */
	spi_bitbang_stop(&dspi->bitbang);
	clk_disable_unprepare(dspi->clk);
	spi_master_put(dspi->bitbang.master);

	return 0;