summaryrefslogtreecommitdiffstats
path: root/drivers/iio/adc
diff options
context:
space:
mode:
authorSlawomir Stepien <sst@poczta.fm>2016-04-14 21:36:38 +0200
committerJonathan Cameron <jic23@kernel.org>2016-04-16 14:39:25 +0200
commit102447adfa5a11df57ba1dfeefa250c96bf5e94f (patch)
tree200ea504c31f9dbbe785c2b4ef7f675c31bcfac0 /drivers/iio/adc
parentiio: adc: at91_adc: fix errors reported by checkpatch.pl (diff)
downloadlinux-102447adfa5a11df57ba1dfeefa250c96bf5e94f.tar.xz
linux-102447adfa5a11df57ba1dfeefa250c96bf5e94f.zip
iio: adc: ad799x: remove space before comma
This fixes the error reported by checkpatch.pl: ERROR: space prohibited before that ',' (ctx:WxW) Signed-off-by: Slawomir Stepien <sst@poczta.fm> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc')
-rw-r--r--drivers/iio/adc/ad799x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/ad799x.c b/drivers/iio/adc/ad799x.c
index 01d71588d752..a3f5254f4e51 100644
--- a/drivers/iio/adc/ad799x.c
+++ b/drivers/iio/adc/ad799x.c
@@ -477,7 +477,7 @@ static int ad799x_read_event_value(struct iio_dev *indio_dev,
if (ret < 0)
return ret;
*val = (ret >> chan->scan_type.shift) &
- GENMASK(chan->scan_type.realbits - 1 , 0);
+ GENMASK(chan->scan_type.realbits - 1, 0);
return IIO_VAL_INT;
}