]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
iio: ti_am335x_adc: check if we found the value
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Wed, 29 May 2013 16:49:55 +0000 (18:49 +0200)
committerSebastian Andrzej Siewior <bigeasy@linutronix.de>
Wed, 12 Jun 2013 16:50:23 +0000 (18:50 +0200)
Usually we get all the values we wanted but it is possible, that te ADC
unit is busy performing the conversation for the HW events. In that case
-EBUSY is returned and the user may re-call the function.

Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
drivers/iio/adc/ti_am335x_adc.c

index 8ffe52d58829d76ff5d695e4584a8d1a4a8be877..4427e8e46a7fee759c3d7dd2782ff9307ea3941e 100644 (file)
@@ -145,6 +145,7 @@ static int tiadc_read_raw(struct iio_dev *indio_dev,
        int i;
        unsigned int fifo1count, read;
        u32 step = UINT_MAX;
+       bool found = false;
 
        /*
         * When the sub-system is first enabled,
@@ -169,11 +170,14 @@ static int tiadc_read_raw(struct iio_dev *indio_dev,
        fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
        for (i = 0; i < fifo1count; i++) {
                read = tiadc_readl(adc_dev, REG_FIFO1);
-               if (read >> 16 == step)
+               if (read >> 16 == step) {
                        *val = read & 0xfff;
+                       found = true;
+               }
        }
        am335x_tsc_se_update(adc_dev->mfd_tscadc);
-
+       if (found == false)
+               return -EBUSY;
        return IIO_VAL_INT;
 }