Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Jimmy Picard and committed by
Jonathan Cameron
aff89455 9d2f79ab

+2
+2
drivers/staging/iio/iio_simple_dummy.c
··· 550 550 static __init int iio_dummy_init(void) 551 551 { 552 552 int i, ret; 553 + 553 554 if (instances > 10) { 554 555 instances = 1; 555 556 return -EINVAL; ··· 578 577 static __exit void iio_dummy_exit(void) 579 578 { 580 579 int i; 580 + 581 581 for (i = 0; i < instances; i++) 582 582 iio_dummy_remove(i); 583 583 kfree(iio_dummy_devs);