Browse Source

iio: adc: vf610: fix the adc register read fail issue

Read the register only when the adc register address is 4 byte aligned.
(rather than the other way around).

Signed-off-by: Haibo Chen <haibo.chen@freescale.com>
Signed-off-by: Fugang Duan <B38611@freescale.com>
Cc: <Stable.vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Fugang Duan 10 years ago
parent
commit
bf604a4c44
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/iio/adc/vf610_adc.c

+ 1 - 1
drivers/iio/adc/vf610_adc.c

@@ -635,7 +635,7 @@ static int vf610_adc_reg_access(struct iio_dev *indio_dev,
 	struct vf610_adc *info = iio_priv(indio_dev);
 	struct vf610_adc *info = iio_priv(indio_dev);
 
 
 	if ((readval == NULL) ||
 	if ((readval == NULL) ||
-		(!(reg % 4) || (reg > VF610_REG_ADC_PCTL)))
+		((reg % 4) || (reg > VF610_REG_ADC_PCTL)))
 		return -EINVAL;
 		return -EINVAL;
 
 
 	*readval = readl(info->regs + reg);
 	*readval = readl(info->regs + reg);