]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
pinctrl: samsung: fix fwnode refcount cleanup if platform_get_irq_optional() fails
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Wed, 6 Nov 2024 22:04:39 +0000 (23:04 +0100)
committerKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 2 Dec 2024 14:10:47 +0000 (15:10 +0100)
Commit 50ebd19e3585 ("pinctrl: samsung: drop pin banks references on
error paths") fixed the pin bank references on the error paths of the
probe function, but there is still an error path where this is not done.

If samsung_pinctrl_get_soc_data() does not fail, the child references
will have acquired, and they will need to be released in the error path
of platform_get_irq_optional(), as it is done in the following error
paths within the probe function.

Replace the direct return in the error path with a goto instruction to
the cleanup function.

Cc: stable@vger.kernel.org
Fixes: a382d568f144 ("pinctrl: samsung: Use platform_get_irq_optional() to get the interrupt")
Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Link: https://lore.kernel.org/r/20241106-samsung-pinctrl-put-v1-1-de854e26dd03@gmail.com
[krzysztof: change Fixes SHA to point to commit introducing the return
 leading to OF node leak]
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
drivers/pinctrl/samsung/pinctrl-samsung.c

index bbedd980ec67234aad847b757f40af5002b11ebb..3ab5878b69d1be5969205f53041a8c3230f5b886 100644 (file)
@@ -1272,7 +1272,7 @@ static int samsung_pinctrl_probe(struct platform_device *pdev)
 
        ret = platform_get_irq_optional(pdev, 0);
        if (ret < 0 && ret != -ENXIO)
-               return ret;
+               goto err_put_banks;
        if (ret > 0)
                drvdata->irq = ret;