diff options
author | Slawomir Stepien <sst@poczta.fm> | 2016-04-14 21:36:36 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-04-16 13:39:23 +0100 |
commit | 038a8b34d375b31a001198f5405f41cb48a153de (patch) | |
tree | 09915fe1a1fbe1318dccd2f4b42709474d1098ac /drivers/iio | |
parent | 37dd441e4fe2d4b38e88d067175f1fc7d6acdf16 (diff) | |
download | op-kernel-dev-038a8b34d375b31a001198f5405f41cb48a153de.zip op-kernel-dev-038a8b34d375b31a001198f5405f41cb48a153de.tar.gz |
iio: adc: mcp3422: remove spaces 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')
-rw-r--r-- | drivers/iio/adc/mcp3422.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/iio/adc/mcp3422.c b/drivers/iio/adc/mcp3422.c index d7b36ef..d1172dc1 100644 --- a/drivers/iio/adc/mcp3422.c +++ b/drivers/iio/adc/mcp3422.c @@ -61,9 +61,9 @@ static const int mcp3422_scales[4][4] = { { 1000000, 500000, 250000, 125000 }, - { 250000 , 125000, 62500 , 31250 }, - { 62500 , 31250 , 15625 , 7812 }, - { 15625 , 7812 , 3906 , 1953 } }; + { 250000, 125000, 62500, 31250 }, + { 62500, 31250, 15625, 7812 }, + { 15625, 7812, 3906, 1953 } }; /* Constant msleep times for data acquisitions */ static const int mcp3422_read_times[4] = { |