]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: iio: tsl2583: remove unnecessary parentheses
authorBrian Masney <masneyb@onstation.org>
Sat, 12 Nov 2016 18:19:32 +0000 (13:19 -0500)
committerJonathan Cameron <jic23@kernel.org>
Sun, 13 Nov 2016 13:07:27 +0000 (13:07 +0000)
in_illuminance_lux_table_store() contains some unnecessary parentheses.
This patch removes them since they provide no value.

Signed-off-by: Brian Masney <masneyb@onstation.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/light/tsl2583.c

index 13ea62aa8ed15f6922c7b03dbdecb620696cae94..9b394daeb669f2235d2d4179757b525daa43da15 100644 (file)
@@ -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;