hwmon: (max16065) Use PTR_ERR_OR_ZERO
authorAxel Lin <axel.lin@ingics.com>
Fri, 11 Jul 2014 08:45:37 +0000 (16:45 +0800)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 4 Aug 2014 14:01:38 +0000 (07:01 -0700)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/max16065.c

index d4efc79..162401a 100644 (file)
@@ -642,10 +642,7 @@ static int max16065_probe(struct i2c_client *client,
 
        hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
                                                           data, data->groups);
-       if (unlikely(IS_ERR(hwmon_dev)))
-               return PTR_ERR(hwmon_dev);
-
-       return 0;
+       return PTR_ERR_OR_ZERO(hwmon_dev);
 }
 
 static const struct i2c_device_id max16065_id[] = {