pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map
authorMiaoqian Lin <linmq006@gmail.com>
Tue, 7 Jun 2022 11:16:01 +0000 (15:16 +0400)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 15 Jun 2022 14:04:01 +0000 (16:04 +0200)
of_parse_phandle() returns a node pointer with refcount
incremented, we should use of_node_put() on it when not need anymore.
Add missing of_node_put() to avoid refcount leak."

Fixes: c2f6d059abfc ("pinctrl: nomadik: refactor DT parser to take two paths")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Link: https://lore.kernel.org/r/20220607111602.57355-1-linmq006@gmail.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/nomadik/pinctrl-nomadik.c

index 640e50d..f5014d0 100644 (file)
@@ -1421,8 +1421,10 @@ static int nmk_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
 
        has_config = nmk_pinctrl_dt_get_config(np, &configs);
        np_config = of_parse_phandle(np, "ste,config", 0);
-       if (np_config)
+       if (np_config) {
                has_config |= nmk_pinctrl_dt_get_config(np_config, &configs);
+               of_node_put(np_config);
+       }
        if (has_config) {
                const char *gpio_name;
                const char *pin;