Skip to content

Commit 86085fe

Browse files
committed
Merge tag 'spi-fix-v5.16-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
Pull spi fix from Mark Brown: "One small fix for a long standing issue with error handling on probe in the Armada driver" * tag 'spi-fix-v5.16-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi: spi: change clk_disable_unprepare to clk_unprepare
2 parents 3856c1b + db6689b commit 86085fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/spi/spi-armada-3700.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ static int a3700_spi_probe(struct platform_device *pdev)
901901
return 0;
902902

903903
error_clk:
904-
clk_disable_unprepare(spi->clk);
904+
clk_unprepare(spi->clk);
905905
error:
906906
spi_master_put(master);
907907
out:

0 commit comments

Comments
 (0)