]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
hwmon: sy7636a: Fix regulator_enable resource leak on error path
authorHaotian Zhang <vulab@iscas.ac.cn>
Wed, 26 Nov 2025 16:26:02 +0000 (00:26 +0800)
committerGuenter Roeck <linux@roeck-us.net>
Wed, 26 Nov 2025 17:03:15 +0000 (09:03 -0800)
In sy7636a_sensor_probe(), regulator_enable() is called but if
devm_hwmon_device_register_with_info() fails, the function returns
without calling regulator_disable(), leaving the regulator enabled
and leaking the reference count.

Switch to devm_regulator_get_enable() to automatically
manage the regulator resource.

Fixes: de34a4053250 ("hwmon: sy7636a: Add temperature driver for sy7636a")
Suggested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Haotian Zhang <vulab@iscas.ac.cn>
Link: https://lore.kernel.org/r/20251126162602.2086-1-vulab@iscas.ac.cn
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/sy7636a-hwmon.c

index a12fc0ce70e76ed685617039f969341e23398e44..d51daaf63d632e25f75c504b58a02adf4564919d 100644 (file)
@@ -66,18 +66,13 @@ static const struct hwmon_chip_info sy7636a_chip_info = {
 static int sy7636a_sensor_probe(struct platform_device *pdev)
 {
        struct regmap *regmap = dev_get_regmap(pdev->dev.parent, NULL);
-       struct regulator *regulator;
        struct device *hwmon_dev;
        int err;
 
        if (!regmap)
                return -EPROBE_DEFER;
 
-       regulator = devm_regulator_get(&pdev->dev, "vcom");
-       if (IS_ERR(regulator))
-               return PTR_ERR(regulator);
-
-       err = regulator_enable(regulator);
+       err = devm_regulator_get_enable(&pdev->dev, "vcom");
        if (err)
                return err;