Staging: tidspbridge: Fix no space at the start of the line in dbll.c
authorRashika Kheria <rashika.kheria@gmail.com>
Sun, 10 Nov 2013 13:29:17 +0000 (18:59 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 10 Nov 2013 20:10:38 +0000 (12:10 -0800)
This patch fixes the following checkpatch.pl warning in pmgr/dbll.c-
WARNING: please, no space at the start of the line

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/tidspbridge/pmgr/dbll.c

index c7d816e466c92f17e272f547d088b6d7ef87df4b..996a02d27d34b06f89fcb038af16c3a04a4a8f63 100644 (file)
@@ -915,10 +915,10 @@ static struct dynload_symbol *dbll_find_symbol(struct dynamic_loader_sym *this,
                        status = dbll_get_addr((struct dbll_library_obj *)lib,
                                               (char *)name, &dbll_sym);
                        if (!status) {
-                               status =
-                                   dbll_get_c_addr((struct dbll_library_obj *)
-                                                   lib, (char *)name,
-                                                   &dbll_sym);
+                               status = dbll_get_c_addr(
+                                               (struct dbll_library_obj *)
+                                               lib, (char *)name,
+                                               &dbll_sym);
                        }
                }
        }
This page took 0.050624 seconds and 5 git commands to generate.