Commit a6d748e3 authored by Cristina Opriceana's avatar Cristina Opriceana Committed by Jonathan Cameron

Staging: iio: trigger: Use braces on both branches of if statement

Fix style issue related to missing braces, detected by checkpatch.pl.
Signed-off-by: default avatarCristina Opriceana <cristina.opriceana@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 8463f6fb
...@@ -74,8 +74,9 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev, ...@@ -74,8 +74,9 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
if (ret == 0 && trig_info->state && trig_info->frequency == 0) if (ret == 0 && trig_info->state && trig_info->frequency == 0)
ret = rtc_irq_set_state(trig_info->rtc, ret = rtc_irq_set_state(trig_info->rtc,
&trig_info->task, 1); &trig_info->task, 1);
} else } else {
ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0); ret = rtc_irq_set_state(trig_info->rtc, &trig_info->task, 0);
}
if (ret) if (ret)
goto error_ret; goto error_ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment