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:
parent
71ccbe5dc5
commit
7c5fe41124
@ -526,7 +526,7 @@ int main(int argc, char **argv)
|
|||||||
"diag %s\n", dev_dir_name);
|
"diag %s\n", dev_dir_name);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
if ((num_channels && autochannels == AUTOCHANNELS_ENABLED) &&
|
if (num_channels && autochannels == AUTOCHANNELS_ENABLED &&
|
||||||
!force_autochannels) {
|
!force_autochannels) {
|
||||||
fprintf(stderr, "Auto-channels selected but some channels "
|
fprintf(stderr, "Auto-channels selected but some channels "
|
||||||
"are already activated in sysfs\n");
|
"are already activated in sysfs\n");
|
||||||
@ -534,7 +534,7 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((!num_channels && autochannels == AUTOCHANNELS_ENABLED) ||
|
if ((!num_channels && autochannels == AUTOCHANNELS_ENABLED) ||
|
||||||
((autochannels == AUTOCHANNELS_ENABLED) && force_autochannels)) {
|
(autochannels == AUTOCHANNELS_ENABLED && force_autochannels)) {
|
||||||
fprintf(stderr, "Enabling all channels\n");
|
fprintf(stderr, "Enabling all channels\n");
|
||||||
|
|
||||||
ret = enable_disable_all_channels(dev_dir_name, 1);
|
ret = enable_disable_all_channels(dev_dir_name, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user