Commit 23990b1a authored by Linus Torvalds's avatar Linus Torvalds
Browse files
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()
parents 72b4fb4c 359f5b0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -632,7 +632,7 @@ static int rockchip_sfc_probe(struct platform_device *pdev)
	if (ret) {
		dev_err(dev, "Failed to request irq\n");

		return ret;
		goto err_irq;
	}

	ret = rockchip_sfc_init(sfc);