]> Git Repo - linux.git/commitdiff
hwmon: (tmp421) Fix return value
authorSachin Kamat <[email protected]>
Wed, 11 Sep 2013 04:19:52 +0000 (09:49 +0530)
committerGuenter Roeck <[email protected]>
Wed, 11 Sep 2013 20:01:41 +0000 (13:01 -0700)
Propagate return value obtained from i2c_smbus_read_byte_data()
instead of hardcoding.

Signed-off-by: Sachin Kamat <[email protected]>
Cc: Andre Prendel <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
drivers/hwmon/tmp421.c

index 964c1d68827400ec9ac6d5ce515418c74294d3aa..ae26b06fa8190dd478456d12a637889c61bde0fe 100644 (file)
@@ -210,7 +210,7 @@ static int tmp421_init_client(struct i2c_client *client)
        if (config < 0) {
                dev_err(&client->dev,
                        "Could not read configuration register (%d)\n", config);
-               return -ENODEV;
+               return config;
        }
 
        config_orig = config;
This page took 0.058084 seconds and 4 git commands to generate.