]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
pinctrl: freescale: mxs: Fix refcount of child
authorPeng Fan <peng.fan@nxp.com>
Sat, 4 May 2024 13:20:16 +0000 (21:20 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 26 Jun 2024 09:59:31 +0000 (11:59 +0200)
of_get_next_child() will increase refcount of the returned node, need
use of_node_put() on it when done.

Per current implementation, 'child' will be override by
for_each_child_of_node(np, child), so use of_get_child_count to avoid
refcount leakage.

Fixes: 17723111e64f ("pinctrl: add pinctrl-mxs support")
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/20240504-pinctrl-cleanup-v2-18-26c5f2dc1181@nxp.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/freescale/pinctrl-mxs.c

index e77311f26262a72d12ab5aceb0f6996b9f8706ce..4813a9e16cb3b1815480d51e5512924ecafad6f8 100644 (file)
@@ -413,8 +413,8 @@ static int mxs_pinctrl_probe_dt(struct platform_device *pdev,
        int ret;
        u32 val;
 
-       child = of_get_next_child(np, NULL);
-       if (!child) {
+       val = of_get_child_count(np);
+       if (val == 0) {
                dev_err(&pdev->dev, "no group is defined\n");
                return -ENOENT;
        }