Browse Source

staging: iio: fix coding style by adding blank lines in iio_simple_dummy

This patch fixes coding style reported by checkpatch.pl that missing
a blank line after declarations.

Signed-off-by: Jimmy Picard <jimmyp11f155@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Jimmy Picard 11 years ago
parent
commit
aff8945566
1 changed files with 2 additions and 0 deletions
  1. 2 0
      drivers/staging/iio/iio_simple_dummy.c

+ 2 - 0
drivers/staging/iio/iio_simple_dummy.c

@@ -550,6 +550,7 @@ error_ret:
 static __init int iio_dummy_init(void)
 {
 	int i, ret;
+
 	if (instances > 10) {
 		instances = 1;
 		return -EINVAL;
@@ -577,6 +578,7 @@ module_init(iio_dummy_init);
 static __exit void iio_dummy_exit(void)
 {
 	int i;
+
 	for (i = 0; i < instances; i++)
 		iio_dummy_remove(i);
 	kfree(iio_dummy_devs);