diff options
author | Cristina Opriceana <cristina.opriceana@gmail.com> | 2015-07-13 16:17:47 +0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-07-20 18:41:22 +0100 |
commit | 37d38e2bcce055c3988977429dc4336c866df73d (patch) | |
tree | 2cccbe32cef52aa8446b4f455a4736af5670dc47 /tools/iio | |
parent | ff1ac639b395d58bbd99ff4a36b10eebb81544a3 (diff) | |
download | linux-37d38e2bcce055c3988977429dc4336c866df73d.tar.bz2 |
tools: iio: Remove unnecessary braces
Single statement blocks don’t need braces.
Found with checkpatch.pl.
Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com>
Acked-by: Hartmut Knaack <knaack.h@gmx.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'tools/iio')
-rw-r--r-- | tools/iio/iio_event_monitor.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/iio/iio_event_monitor.c b/tools/iio/iio_event_monitor.c index 703f4cb0e8e9..9ee195949a4a 100644 --- a/tools/iio/iio_event_monitor.c +++ b/tools/iio/iio_event_monitor.c @@ -262,9 +262,8 @@ int main(int argc, char **argv) printf("Found IIO device with name %s with device number %d\n", device_name, dev_num); ret = asprintf(&chrdev_name, "/dev/iio:device%d", dev_num); - if (ret < 0) { + if (ret < 0) return -ENOMEM; - } } else { /* * If we can't find an IIO device by name assume device_name is |