On 14/04/16 20:36, Slawomir Stepien wrote: > This fixes the error reported by checkpatch.pl: > > ERROR: space prohibited before that ',' (ctx:WxW) > > Signed-off-by: Slawomir Stepien <sst@xxxxxxxxx> Applied, Thanks, Jonathan > --- > drivers/iio/adc/ad799x.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/adc/ad799x.c b/drivers/iio/adc/ad799x.c > index 01d7158..a3f5254 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; > } > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html