]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
hwmon: (tmp102) Improve error handling
authorGuenter Roeck <linux@roeck-us.net>
Mon, 25 Jul 2016 21:57:47 +0000 (14:57 -0700)
committerGuenter Roeck <linux@roeck-us.net>
Sun, 31 Jul 2016 22:02:51 +0000 (15:02 -0700)
Use devm_add_action_or_reset() instead of devm_add_action(), and
check its return code.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/tmp102.c

index a942a2574a4d7dfaa4229f61a48d37905db2b5c3..8479ac5eb853590852c808eab05a8764155555b3 100644 (file)
@@ -227,7 +227,9 @@ static int tmp102_probe(struct i2c_client *client,
 
        tmp102->config_orig = regval;
 
-       devm_add_action(dev, tmp102_restore_config, tmp102);
+       err = devm_add_action_or_reset(dev, tmp102_restore_config, tmp102);
+       if (err)
+               return err;
 
        regval &= ~TMP102_CONFIG_CLEAR;
        regval |= TMP102_CONFIG_SET;