Commit 6fe9092d authored by Taiane Coelho Ramos's avatar Taiane Coelho Ramos Committed by Greg Kroah-Hartman

Staging: iio: ade7758: Remove braces on a single statement if

This patch fixes the checkpatch.pl warning:

WARNING: braces {} are not necessary for single
statement blocks
Signed-off-by: default avatarTaiane Coelho Ramos <exhora.tat@gmail.com>
Reviewed-by: default avatarDaniel Baluta <daniel.baluta@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent adb3d770
...@@ -119,9 +119,8 @@ int ade7758_configure_ring(struct iio_dev *indio_dev) ...@@ -119,9 +119,8 @@ int ade7758_configure_ring(struct iio_dev *indio_dev)
int ret = 0; int ret = 0;
buffer = iio_kfifo_allocate(); buffer = iio_kfifo_allocate();
if (!buffer) { if (!buffer)
return -ENOMEM; return -ENOMEM;
}
iio_device_attach_buffer(indio_dev, buffer); iio_device_attach_buffer(indio_dev, buffer);
......
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