Skip to content

Commit 23990b1

Browse files
committed
Merge tag 'spi-fix-v6.3-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
Pull spi fix from Mark Brown: "A small fix in the error handling for the rockchip driver, ensuring we don't leak clock enables if we fail to request the interrupt for the device" * tag 'spi-fix-v6.3-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi: spi: spi-rockchip: Fix missing unwind goto in rockchip_sfc_probe()
2 parents 72b4fb4 + 359f5b0 commit 23990b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/spi/spi-rockchip-sfc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ static int rockchip_sfc_probe(struct platform_device *pdev)
632632
if (ret) {
633633
dev_err(dev, "Failed to request irq\n");
634634

635-
return ret;
635+
goto err_irq;
636636
}
637637

638638
ret = rockchip_sfc_init(sfc);

0 commit comments

Comments
 (0)