iio: light apds9960: fix wrong use of brace
authorSlawomir Stepien <sst@poczta.fm>
Thu, 14 Apr 2016 19:36:33 +0000 (21:36 +0200)
committerJonathan Cameron <jic23@kernel.org>
Sat, 16 Apr 2016 12:39:21 +0000 (13:39 +0100)
This fixes the error reported by checkpatch.pl:

ERROR: that open brace { should be on the previous line

Signed-off-by: Slawomir Stepien <sst@poczta.fm>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/light/apds9960.c

index f6a07dc..47fcd5a 100644 (file)
@@ -321,8 +321,12 @@ static const struct iio_chan_spec apds9960_channels[] = {
 };
 
 /* integration time in us */
-static const int apds9960_int_time[][2] =
-       { {28000, 246}, {100000, 219}, {200000, 182}, {700000, 0} };
+static const int apds9960_int_time[][2] = {
+       { 28000, 246},
+       {100000, 219},
+       {200000, 182},
+       {700000,   0}
+};
 
 /* gain mapping */
 static const int apds9960_pxs_gain_map[] = {1, 2, 4, 8};