diff options
author | Matt Ranostay <mranostay@gmail.com> | 2016-02-27 07:13:49 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-02-27 18:17:43 +0100 |
commit | f8d9d3b434cd50f7a0a3f0c383736af5e724c34c (patch) | |
tree | 2c37b391817a6940c43a2b9c2d75dee0e23cb1b9 /drivers/iio/humidity/htu21.c | |
parent | iio: imu: mpu6050: add mpu6500 register settings (diff) | |
download | linux-f8d9d3b434cd50f7a0a3f0c383736af5e724c34c.tar.xz 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/humidity/htu21.c')
-rw-r--r-- | drivers/iio/humidity/htu21.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/humidity/htu21.c b/drivers/iio/humidity/htu21.c index d1636a74980e..11cbc38b450f 100644 --- a/drivers/iio/humidity/htu21.c +++ b/drivers/iio/humidity/htu21.c @@ -192,7 +192,7 @@ static int htu21_probe(struct i2c_client *client, I2C_FUNC_SMBUS_READ_I2C_BLOCK)) { dev_err(&client->dev, "Adapter does not support some i2c transaction\n"); - return -ENODEV; + return -EOPNOTSUPP; } indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*dev_data)); |