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

Commit 568852b7 authored by Wei Yongjun's avatar Wei Yongjun Committed by Mark Brown
Browse files

spi: spi-cavium-thunderx: Add missing clk_disable_unprepare()



Add the missing clk_disable_unprepare() before return in the probe
error handling case and remove.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7347a6c7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -80,6 +80,7 @@ static int thunderx_spi_probe(struct pci_dev *pdev,
	return 0;

error:
	clk_disable_unprepare(p->clk);
	spi_master_put(master);
	return ret;
}
@@ -93,6 +94,7 @@ static void thunderx_spi_remove(struct pci_dev *pdev)
	if (!p)
		return;

	clk_disable_unprepare(p->clk);
	/* Put everything in a known state. */
	writeq(0, p->register_base + OCTEON_SPI_CFG(p));
}