From: Slawomir Stepien Date: Thu, 14 Apr 2016 19:36:33 +0000 (+0200) Subject: iio: light apds9960: fix wrong use of brace X-Git-Tag: v4.7-rc1~90^2~349^2~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ebe168069324b0a182f74bef593240840e4da97e;p=thirdparty%2Fkernel%2Flinux.git iio: light apds9960: fix wrong use of brace This fixes the error reported by checkpatch.pl: ERROR: that open brace { should be on the previous line Signed-off-by: Slawomir Stepien Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/light/apds9960.c b/drivers/iio/light/apds9960.c index f6a07dc32ae48..47fcd5ad4ff28 100644 --- a/drivers/iio/light/apds9960.c +++ b/drivers/iio/light/apds9960.c @@ -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};