staging: iio: resolver: add missing braces on if-else statements

Add braces around the else clause to adhere to kernel coding style. This
clears the following checkpatch issue:

CHECK: braces {} should be used on all arms of this statement

Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Eva Rachel Retuya 2016-02-18 18:59:36 +08:00 committed by Greg Kroah-Hartman
parent 8d80ccbb1e
commit 84681c7c85
1 changed files with 4 additions and 3 deletions

View File

@ -319,9 +319,9 @@ static ssize_t ad2s1210_store_control(struct device *dev,
data = ad2s1210_read_resolution_pin(st);
if (data != st->resolution)
dev_warn(dev, "ad2s1210: resolution settings not match\n");
} else
} else {
ad2s1210_set_resolution_pin(st);
}
ret = len;
st->hysteresis = !!(data & AD2S1210_ENABLE_HYSTERESIS);
@ -381,8 +381,9 @@ static ssize_t ad2s1210_store_resolution(struct device *dev,
data = ad2s1210_read_resolution_pin(st);
if (data != st->resolution)
dev_warn(dev, "ad2s1210: resolution settings not match\n");
} else
} else {
ad2s1210_set_resolution_pin(st);
}
ret = len;
error_ret:
mutex_unlock(&st->lock);