]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
PM / devfreq: Propagate error from devfreq_add_device()
authorBjorn Andersson <bjorn.andersson@linaro.org>
Mon, 6 Nov 2017 05:27:41 +0000 (21:27 -0800)
committerSasha Levin <alexander.levin@microsoft.com>
Sun, 4 Mar 2018 15:28:22 +0000 (10:28 -0500)
[ Upstream commit d1bf2d30728f310f72296b54f0651ecdb09cbb12 ]

Propagate the error of devfreq_add_device() in devm_devfreq_add_device()
rather than statically returning ENOMEM. This makes it slightly faster
to pinpoint the cause of a returned error.

Fixes: 8cd84092d35e ("PM / devfreq: Add resource-managed function for devfreq device")
Cc: stable@vger.kernel.org
Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/devfreq/devfreq.c

index ca1b362d77e2329c9b6c0d511f754fdf839da095..3373561caae8b7fa335d4ebccdf77421ac49ae00 100644 (file)
@@ -584,7 +584,7 @@ struct devfreq *devm_devfreq_add_device(struct device *dev,
        devfreq = devfreq_add_device(dev, profile, governor_name, data);
        if (IS_ERR(devfreq)) {
                devres_free(ptr);
-               return ERR_PTR(-ENOMEM);
+               return devfreq;
        }
 
        *ptr = devfreq;