summaryrefslogtreecommitdiffstats
path: root/drivers/iio/temperature/tmp006.c
diff options
context:
space:
mode:
authorMatt Ranostay2016-02-27 07:13:49 +0100
committerJonathan Cameron2016-02-27 18:17:43 +0100
commitf8d9d3b434cd50f7a0a3f0c383736af5e724c34c (patch)
tree2c37b391817a6940c43a2b9c2d75dee0e23cb1b9 /drivers/iio/temperature/tmp006.c
parentiio: imu: mpu6050: add mpu6500 register settings (diff)
downloadkernel-qcow2-linux-f8d9d3b434cd50f7a0a3f0c383736af5e724c34c.tar.gz
kernel-qcow2-linux-f8d9d3b434cd50f7a0a3f0c383736af5e724c34c.tar.xz
kernel-qcow2-linux-f8d9d3b434cd50f7a0a3f0c383736af5e724c34c.zip
iio: convert to common i2c_check_functionality() return value
Previously most drivers that used a i2c_check_functionality() check condition required various error codes on failure. This patchset converts to a standard of -EOPNOTSUPP Signed-off-by: Matt Ranostay <mranostay@gmail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/temperature/tmp006.c')
-rw-r--r--drivers/iio/temperature/tmp006.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/temperature/tmp006.c b/drivers/iio/temperature/tmp006.c
index e78c1069a6a9..18c9b43c02cb 100644
--- a/drivers/iio/temperature/tmp006.c
+++ b/drivers/iio/temperature/tmp006.c
@@ -205,7 +205,7 @@ static int tmp006_probe(struct i2c_client *client,
int ret;
if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_WORD_DATA))
- return -ENODEV;
+ return -EOPNOTSUPP;
if (!tmp006_check_identification(client)) {
dev_err(&client->dev, "no TMP006 sensor\n");