tools: iio: iio_generic_buffer: drop unneeded parentheses

Remove extra parentheses introduced in commit <73e176a tools: iio:
iio_generic_buffer: add -A to force-enable all channels>.

Suggested-by: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
Eva Rachel Retuya 2016-10-20 17:19:24 +08:00 committed by Jonathan Cameron
parent 71ccbe5dc5
commit 7c5fe41124
1 changed files with 2 additions and 2 deletions

View File

@ -526,7 +526,7 @@ int main(int argc, char **argv)
"diag %s\n", dev_dir_name);
goto error;
}
if ((num_channels && autochannels == AUTOCHANNELS_ENABLED) &&
if (num_channels && autochannels == AUTOCHANNELS_ENABLED &&
!force_autochannels) {
fprintf(stderr, "Auto-channels selected but some channels "
"are already activated in sysfs\n");
@ -534,7 +534,7 @@ int main(int argc, char **argv)
}
if ((!num_channels && autochannels == AUTOCHANNELS_ENABLED) ||
((autochannels == AUTOCHANNELS_ENABLED) && force_autochannels)) {
(autochannels == AUTOCHANNELS_ENABLED && force_autochannels)) {
fprintf(stderr, "Enabling all channels\n");
ret = enable_disable_all_channels(dev_dir_name, 1);