From: Brian Masney Date: Sat, 12 Nov 2016 18:19:32 +0000 (-0500) Subject: staging: iio: tsl2583: remove unnecessary parentheses X-Git-Tag: v4.10-rc1~148^2~229^2~9 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1ad513604fe9112793b4ae66d873757a8a6d3058;p=karo-tx-linux.git staging: iio: tsl2583: remove unnecessary parentheses in_illuminance_lux_table_store() contains some unnecessary parentheses. This patch removes them since they provide no value. Signed-off-by: Brian Masney Signed-off-by: Jonathan Cameron --- diff --git a/drivers/staging/iio/light/tsl2583.c b/drivers/staging/iio/light/tsl2583.c index 13ea62aa8ed1..9b394daeb669 100644 --- a/drivers/staging/iio/light/tsl2583.c +++ b/drivers/staging/iio/light/tsl2583.c @@ -574,7 +574,7 @@ static ssize_t in_illuminance_lux_table_store(struct device *dev, __func__, TSL2583_MAX_LUX_INTS); goto done; } - if ((value[(n - 2)] | value[(n - 1)] | value[n]) != 0) { + if ((value[n - 2] | value[n - 1] | value[n]) != 0) { dev_err(dev, "%s: The last 3 entries in the lux table must be zeros.\n", __func__); goto done; @@ -582,7 +582,7 @@ static ssize_t in_illuminance_lux_table_store(struct device *dev, /* Zero out the table */ memset(tsl2583_device_lux, 0, sizeof(tsl2583_device_lux)); - memcpy(tsl2583_device_lux, &value[1], (value[0] * 4)); + memcpy(tsl2583_device_lux, &value[1], value[0] * 4); ret = len;