]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
staging: iio: tsl2x7x: add common function for reading chip status
authorBrian Masney <masneyb@onstation.org>
Sun, 4 Mar 2018 01:49:33 +0000 (20:49 -0500)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 10 Mar 2018 14:29:39 +0000 (14:29 +0000)
There were three places where the same chunk of code was used to read
the chip status. This patch creates a common function
tsl2x7x_read_status() to reduce duplicate code. This patch also corrects
tsl2x7x_event_handler() to properly check for an error after reading the
chip status.

Signed-off-by: Brian Masney <masneyb@onstation.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/staging/iio/light/tsl2x7x.c

index c02db03ef369e4ce0f08605b5d9da0fa9af3609d..6bb622816660339a7eb4e0d43c7b111ecdcbdda7 100644 (file)
@@ -293,6 +293,20 @@ static int tsl2x7x_clear_interrupts(struct tsl2X7X_chip *chip, int reg)
        return ret;
 }
 
+static int tsl2x7x_read_status(struct tsl2X7X_chip *chip)
+{
+       int ret;
+
+       ret = i2c_smbus_read_byte_data(chip->client,
+                                      TSL2X7X_CMD_REG | TSL2X7X_STATUS);
+       if (ret < 0)
+               dev_err(&chip->client->dev,
+                       "%s: failed to read STATUS register: %d\n", __func__,
+                       ret);
+
+       return ret;
+}
+
 /**
  * tsl2x7x_get_lux() - Reads and calculates current lux value.
  * @indio_dev: pointer to IIO device
@@ -332,13 +346,10 @@ static int tsl2x7x_get_lux(struct iio_dev *indio_dev)
                goto out_unlock;
        }
 
-       ret = i2c_smbus_read_byte_data(chip->client,
-                                      TSL2X7X_CMD_REG | TSL2X7X_STATUS);
-       if (ret < 0) {
-               dev_err(&chip->client->dev,
-                       "%s: Failed to read STATUS Reg\n", __func__);
+       ret = tsl2x7x_read_status(chip);
+       if (ret < 0)
                goto out_unlock;
-       }
+
        /* is data new & valid */
        if (!(ret & TSL2X7X_STA_ADC_VALID)) {
                dev_err(&chip->client->dev,
@@ -458,12 +469,9 @@ static int tsl2x7x_get_prox(struct iio_dev *indio_dev)
                return -EBUSY;
        }
 
-       ret = i2c_smbus_read_byte_data(chip->client,
-                                      TSL2X7X_CMD_REG | TSL2X7X_STATUS);
-       if (ret < 0) {
-               dev_err(&chip->client->dev, "i2c err=%d\n", ret);
+       ret = tsl2x7x_read_status(chip);
+       if (ret < 0)
                goto prox_poll_err;
-       }
 
        switch (chip->id) {
        case tsl2571:
@@ -1396,13 +1404,13 @@ static irqreturn_t tsl2x7x_event_handler(int irq, void *private)
        struct tsl2X7X_chip *chip = iio_priv(indio_dev);
        s64 timestamp = iio_get_time_ns(indio_dev);
        int ret;
-       u8 value;
 
-       value = i2c_smbus_read_byte_data(chip->client,
-                                        TSL2X7X_CMD_REG | TSL2X7X_STATUS);
+       ret = tsl2x7x_read_status(chip);
+       if (ret < 0)
+               return ret;
 
        /* What type of interrupt do we need to process */
-       if (value & TSL2X7X_STA_PRX_INTR) {
+       if (ret & TSL2X7X_STA_PRX_INTR) {
                tsl2x7x_get_prox(indio_dev); /* freshen data for ABI */
                iio_push_event(indio_dev,
                               IIO_UNMOD_EVENT_CODE(IIO_PROXIMITY,
@@ -1412,7 +1420,7 @@ static irqreturn_t tsl2x7x_event_handler(int irq, void *private)
                                                    timestamp);
        }
 
-       if (value & TSL2X7X_STA_ALS_INTR) {
+       if (ret & TSL2X7X_STA_ALS_INTR) {
                tsl2x7x_get_lux(indio_dev); /* freshen data for ABI */
                iio_push_event(indio_dev,
                               IIO_UNMOD_EVENT_CODE(IIO_LIGHT,