hwmon: (w83627ehf) Fix a resource leak in probe
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 21 Sep 2020 12:52:12 +0000 (15:52 +0300)
committerGuenter Roeck <linux@roeck-us.net>
Wed, 23 Sep 2020 16:40:33 +0000 (09:40 -0700)
commit18360b33a071e5883250fd1e04bfdeff8c3887a3
tree0541f24f0faa4d16576dd2aaa58b2e205842216a
parent6c094b31ea2ad773824362ba0fccb88d36f8d32d
hwmon: (w83627ehf) Fix a resource leak in probe

Smatch has a new check for resource leaks which found a bug in probe:

    drivers/hwmon/w83627ehf.c:2417 w83627ehf_probe()
    warn: 'res->start' not released on lines: 2412.

We need to clean up if devm_hwmon_device_register_with_info() fails.

Fixes: 266cd5835947 ("hwmon: (w83627ehf) convert to with_info interface")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Dr. David Alan Gilbert <linux@treblig.org>
Link: https://lore.kernel.org/r/20200921125212.GA1128194@mwanda
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/w83627ehf.c