]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
i2c: davinci: fix PM disable depth imbalance in davinci_i2c_probe
authorZhang Qilong <zhangqilong3@huawei.com>
Thu, 29 Sep 2022 14:30:38 +0000 (22:30 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 12 Oct 2022 07:51:25 +0000 (09:51 +0200)
[ Upstream commit e2062df704dea47efe16edcaa2316d7b5ecca64f ]

The pm_runtime_enable will increase power disable depth. Thus a
pairing decrement is needed on the error handling path to keep
it balanced according to context.

Fixes: 17f88151ff190 ("i2c: davinci: Add PM Runtime Support")
Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
Reviewed-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/i2c/busses/i2c-davinci.c

index 9e09db31a937e5e72df2399ca0893fc527bd8b91..5343c82c85944af7107f795afee87bb7a98271e8 100644 (file)
@@ -823,7 +823,7 @@ static int davinci_i2c_probe(struct platform_device *pdev)
        r = pm_runtime_resume_and_get(dev->dev);
        if (r < 0) {
                dev_err(dev->dev, "failed to runtime_get device: %d\n", r);
-               return r;
+               goto err_pm;
        }
 
        i2c_davinci_init(dev);
@@ -882,6 +882,7 @@ static int davinci_i2c_probe(struct platform_device *pdev)
 err_unuse_clocks:
        pm_runtime_dont_use_autosuspend(dev->dev);
        pm_runtime_put_sync(dev->dev);
+err_pm:
        pm_runtime_disable(dev->dev);
 
        return r;