aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/smm665.c
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2014-02-12 00:38:31 -0500
committerGuenter Roeck <linux@roeck-us.net>2014-03-03 11:01:03 -0500
commitf44e5c5cf9303daac57be0aa01bc0e8f29f1b9bd (patch)
tree2d0f8ac77d825e070fb4722dfa12eaf299c20092 /drivers/hwmon/smm665.c
parent2065bdd64cf3e72c8e9095575ba6e2aca98382f5 (diff)
hwmon: (smm665): Return error from i2c_smbus_read_word_swapped
There is no reason to replace one error code with another, and returning -1 as error code is wrong anyway. Smatch log: drivers/hwmon/smm665.c:225 smm665_read_adc() info: why not propagate 'rv' from i2c_smbus_read_word_swapped() instead of (-1)? Reviewed-by: Jean Delvare <jdelvare@suse.de> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/smm665.c')
-rw-r--r--drivers/hwmon/smm665.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/smm665.c b/drivers/hwmon/smm665.c
index d9e1b7de78da..4ef5802df6d8 100644
--- a/drivers/hwmon/smm665.c
+++ b/drivers/hwmon/smm665.c
@@ -222,7 +222,7 @@ static int smm665_read_adc(struct smm665_data *data, int adc)
222 rv = i2c_smbus_read_word_swapped(client, 0); 222 rv = i2c_smbus_read_word_swapped(client, 0);
223 if (rv < 0) { 223 if (rv < 0) {
224 dev_dbg(&client->dev, "Failed to read ADC value: error %d", rv); 224 dev_dbg(&client->dev, "Failed to read ADC value: error %d", rv);
225 return -1; 225 return rv;
226 } 226 }
227 /* 227 /*
228 * Validate/verify readback adc channel (in bit 11..14). 228 * Validate/verify readback adc channel (in bit 11..14).