]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
iio: potentiometer: tpl0102: change i2c functionality return code
authorMatt Ranostay <mranostay@gmail.com>
Sat, 5 Mar 2016 06:55:25 +0000 (22:55 -0800)
committerJonathan Cameron <jic23@kernel.org>
Sat, 5 Mar 2016 14:00:57 +0000 (14:00 +0000)
Change i2c_check_functionality condition check return from ENOTSUPP to
EOPNOTSUPP which is now the standard return code.

Signed-off-by: Matt Ranostay <mranostay@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/potentiometer/tpl0102.c

index 313124b6fd59be7e28dba862a803b1b23dcd9607..5c304d42d7139594c2437257c77516d212535a72 100644 (file)
@@ -118,7 +118,7 @@ static int tpl0102_probe(struct i2c_client *client,
 
        if (!i2c_check_functionality(client->adapter,
                                     I2C_FUNC_SMBUS_WORD_DATA))
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        indio_dev = devm_iio_device_alloc(dev, sizeof(*data));
        if (!indio_dev)