iio: chemical: atlas-ph-sensor: use regmap_bulk_read
authorMatt Ranostay <mranostay@gmail.com>
Mon, 15 Feb 2016 02:59:07 +0000 (18:59 -0800)
committerJonathan Cameron <jic23@kernel.org>
Wed, 24 Feb 2016 20:40:40 +0000 (20:40 +0000)
Replaced i2c_smbus_read_i2c_block_data() with regmap_bulk_read()
function call. This is to make the driver code more consistent.

Signed-off-by: Matt Ranostay <mranostay@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/chemical/atlas-ph-sensor.c

index 71c8e02ea48af8e7358f98f0a7f7eb5a3eea7abf..62b37cd8fb56d840c66b819df65a48ea56461c61 100644 (file)
@@ -178,10 +178,10 @@ static irqreturn_t atlas_trigger_handler(int irq, void *private)
        struct atlas_data *data = iio_priv(indio_dev);
        int ret;
 
-       ret = i2c_smbus_read_i2c_block_data(data->client, ATLAS_REG_PH_DATA,
-                               sizeof(data->buffer[0]), (u8 *) &data->buffer);
+       ret = regmap_bulk_read(data->regmap, ATLAS_REG_PH_DATA,
+                             (u8 *) &data->buffer, sizeof(data->buffer[0]));
 
-       if (ret > 0)
+       if (!ret)
                iio_push_to_buffers_with_timestamp(indio_dev, data->buffer,
                                iio_get_time_ns());
 
This page took 0.025639 seconds and 5 git commands to generate.