diff options
author | Joe Simmons-Talbott <joetalbott@gmail.com> | 2022-07-27 21:18:55 +0300 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2022-08-16 00:29:57 +0300 |
commit | 3d4b8291df3b5c9bc62ea8213b5483c4ec852947 (patch) | |
tree | d126b10cdc1dc74e6819c08d493ef5321938cf17 /drivers | |
parent | 9d9ec8d01443832d4e6d2f46bfd6b3270f390be3 (diff) | |
download | linux-3d4b8291df3b5c9bc62ea8213b5483c4ec852947.tar.xz |
iio: Fix indentation for multiline conditional.
As reported by checkpatch.pl make indentation match previous
conditional.
Signed-off-by: Joe Simmons-Talbott <joetalbott@gmail.com>
Link: https://lore.kernel.org/r/20220727181855.589052-3-joetalbott@gmail.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/iio/industrialio-buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c index 47a6e97f8e48..228598b82a2f 100644 --- a/drivers/iio/industrialio-buffer.c +++ b/drivers/iio/industrialio-buffer.c @@ -843,8 +843,8 @@ static int iio_verify_update(struct iio_dev *indio_dev, * to verify. */ if (remove_buffer && !insert_buffer && - list_is_singular(&iio_dev_opaque->buffer_list)) - return 0; + list_is_singular(&iio_dev_opaque->buffer_list)) + return 0; modes = indio_dev->modes; |