]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
spi: mxs: fix reference leak in mxs_spi_probe
authorZhang Qilong <zhangqilong3@huawei.com>
Fri, 6 Nov 2020 01:24:21 +0000 (09:24 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Dec 2020 10:25:54 +0000 (11:25 +0100)
[ Upstream commit 03fc41afaa6549baa2dab7a84e1afaf5cadb5b18 ]

pm_runtime_get_sync will increment pm usage counter even it
failed. Forgetting to pm_runtime_put_noidle will result in
reference leak in mxs_spi_probe, so we should fix it.

Fixes: b7969caf41a1d ("spi: mxs: implement runtime pm")
Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
Link: https://lore.kernel.org/r/20201106012421.95420-1-zhangqilong3@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/spi/spi-mxs.c

index 6ac95a2a21cef53bc7817c8403047e3b565ed478..4a7375ecb65ef85ab99026bae477e29cae76c0e7 100644 (file)
@@ -605,6 +605,7 @@ static int mxs_spi_probe(struct platform_device *pdev)
 
        ret = pm_runtime_get_sync(ssp->dev);
        if (ret < 0) {
+               pm_runtime_put_noidle(ssp->dev);
                dev_err(ssp->dev, "runtime_get_sync failed\n");
                goto out_pm_runtime_disable;
        }