iio: trigger: Add a blank line after declarations
authorRoberta Dobrescu <roberta.dobrescu@gmail.com>
Tue, 16 Dec 2014 09:16:06 +0000 (11:16 +0200)
committerJonathan Cameron <jic23@kernel.org>
Fri, 26 Dec 2014 12:15:36 +0000 (12:15 +0000)
This patch fixes the following checkpatch.pl warning:
WARNING: Missing a blank line after declarations

Signed-off-by: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/trigger/iio-trig-sysfs.c

index 254c7e906127f6152a51d273e57b0a5daa0fa950..3dfab2bc6d6935368a6cec8cd5b45617a921bb0a 100644 (file)
@@ -135,6 +135,7 @@ static int iio_sysfs_trigger_probe(int id)
        struct iio_sysfs_trig *t;
        int ret;
        bool foundit = false;
+
        mutex_lock(&iio_sysfs_trig_list_mut);
        list_for_each_entry(t, &iio_sysfs_trig_list, l)
                if (id == t->id) {
@@ -185,6 +186,7 @@ static int iio_sysfs_trigger_remove(int id)
 {
        bool foundit = false;
        struct iio_sysfs_trig *t;
+
        mutex_lock(&iio_sysfs_trig_list_mut);
        list_for_each_entry(t, &iio_sysfs_trig_list, l)
                if (id == t->id) {