soc: versatile: realview: fix memory leak during device remove
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Sun, 25 Aug 2024 18:05:23 +0000 (20:05 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 30 Aug 2024 13:40:11 +0000 (15:40 +0200)
If device is unbound, the memory allocated for soc_dev_attr should be
freed to prevent leaks.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/20240825-soc-dev-fixes-v1-2-ff4b35abed83@linaro.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/soc/versatile/soc-realview.c

index c6876d2..d304ee6 100644 (file)
@@ -93,7 +93,7 @@ static int realview_soc_probe(struct platform_device *pdev)
        if (IS_ERR(syscon_regmap))
                return PTR_ERR(syscon_regmap);
 
-       soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
+       soc_dev_attr = devm_kzalloc(&pdev->dev, sizeof(*soc_dev_attr), GFP_KERNEL);
        if (!soc_dev_attr)
                return -ENOMEM;
 
@@ -106,10 +106,9 @@ static int realview_soc_probe(struct platform_device *pdev)
        soc_dev_attr->family = "Versatile";
        soc_dev_attr->custom_attr_group = realview_groups[0];
        soc_dev = soc_device_register(soc_dev_attr);
-       if (IS_ERR(soc_dev)) {
-               kfree(soc_dev_attr);
+       if (IS_ERR(soc_dev))
                return -ENODEV;
-       }
+
        ret = regmap_read(syscon_regmap, REALVIEW_SYS_ID_OFFSET,
                          &realview_coreid);
        if (ret)