diff options
author | Roberta Dobrescu <roberta.dobrescu@gmail.com> | 2014-12-30 20:45:43 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-01-01 12:16:07 +0000 |
commit | c5878d9dbb959538d09faf9ad5f359e645de4d95 (patch) | |
tree | e267b895891e607be65c24d139dcc93c1976ee7c /drivers/iio/amplifiers | |
parent | 586d48f92691976cc1932e2fdcbb3abd1bec8aa8 (diff) | |
download | blackbird-op-linux-c5878d9dbb959538d09faf9ad5f359e645de4d95.tar.gz blackbird-op-linux-c5878d9dbb959538d09faf9ad5f359e645de4d95.zip |
iio: amplifiers: ad8366: Remove space before ','
This patch fixes the following checkpatch.pl error:
ERROR: space prohibited before that ',' (ctx:WxW)
Signed-off-by: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/amplifiers')
-rw-r--r-- | drivers/iio/amplifiers/ad8366.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/amplifiers/ad8366.c b/drivers/iio/amplifiers/ad8366.c index ba6f6a91dfff..fce25a0ac372 100644 --- a/drivers/iio/amplifiers/ad8366.c +++ b/drivers/iio/amplifiers/ad8366.c @@ -166,7 +166,7 @@ static int ad8366_probe(struct spi_device *spi) if (ret) goto error_disable_reg; - ad8366_write(indio_dev, 0 , 0); + ad8366_write(indio_dev, 0, 0); return 0; |