iio: hid-sensor-hub: clean up indentation, remove extraneous tab
authorColin Ian King <colin.king@canonical.com>
Sun, 18 Nov 2018 16:27:57 +0000 (16:27 +0000)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 25 Nov 2018 14:03:59 +0000 (14:03 +0000)
The statement is indented too much by one level, fix this by
removing the extraneous tab.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/common/hid-sensors/hid-sensor-attributes.c

index ed3849d..b2143d7 100644 (file)
@@ -336,7 +336,7 @@ static void adjust_exponent_nano(int *val0, int *val1, int scale0,
                        scale1 = scale1 % pow_10(8 - i);
                }
                *val0 += res;
-                       *val1 = scale1 * pow_10(exp);
+               *val1 = scale1 * pow_10(exp);
        } else if (exp < 0) {
                exp = abs(exp);
                if (exp > 9) {