From e537daa198ed2b0f3336c340e9abd540fd95125d Mon Sep 17 00:00:00 2001 From: Eva Rachel Retuya Date: Thu, 18 Feb 2016 15:35:39 +0800 Subject: [PATCH] staging: iio: light: add space around '*" Address checkpatch check pointing out the lack of space around the operator '*'. Signed-off-by: Eva Rachel Retuya Signed-off-by: Greg Kroah-Hartman --- drivers/staging/iio/light/tsl2583.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/iio/light/tsl2583.c b/drivers/staging/iio/light/tsl2583.c index 5fc411085fbf..e970b3ff140e 100644 --- a/drivers/staging/iio/light/tsl2583.c +++ b/drivers/staging/iio/light/tsl2583.c @@ -731,7 +731,7 @@ static ssize_t taos_luxtable_store(struct device *dev, { struct iio_dev *indio_dev = dev_to_iio_dev(dev); struct tsl2583_chip *chip = iio_priv(indio_dev); - int value[ARRAY_SIZE(taos_device_lux)*3 + 1]; + int value[ARRAY_SIZE(taos_device_lux) * 3 + 1]; int n; get_options(buf, ARRAY_SIZE(value), value); -- 2.34.1