On 20/10/16 10:19, Eva Rachel Retuya wrote: > 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@xxxxxxxxxx> > Signed-off-by: Eva Rachel Retuya <eraretuya@xxxxxxxxx> Applied, thanks, Jonathan > --- > tools/iio/iio_generic_buffer.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/iio/iio_generic_buffer.c b/tools/iio/iio_generic_buffer.c > index 8ef39ae..f0c6f54 100644 > --- a/tools/iio/iio_generic_buffer.c > +++ b/tools/iio/iio_generic_buffer.c > @@ -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); > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html