aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge
diff options
context:
space:
mode:
authorRashika Kheria <rashika.kheria@gmail.com>2013-11-10 18:59:17 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-10 12:10:38 -0800
commitb5f45d8eb6abe3e34fc43c119a2c12fc10b46d9b (patch)
tree2b48f90c03fa1d4e812240938475b2b62c25901f /drivers/staging/tidspbridge
parentStaging: tidspbridge: Fix no space before tabs in dbll.c (diff)
downloadlinux-dev-b5f45d8eb6abe3e34fc43c119a2c12fc10b46d9b.tar.xz
linux-dev-b5f45d8eb6abe3e34fc43c119a2c12fc10b46d9b.zip
Staging: tidspbridge: Fix no space at the start of the line in dbll.c
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>
Diffstat (limited to 'drivers/staging/tidspbridge')
-rw-r--r--drivers/staging/tidspbridge/pmgr/dbll.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/tidspbridge/pmgr/dbll.c b/drivers/staging/tidspbridge/pmgr/dbll.c
index c7d816e466c9..996a02d27d34 100644
--- a/drivers/staging/tidspbridge/pmgr/dbll.c
+++ b/drivers/staging/tidspbridge/pmgr/dbll.c
@@ -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);
}
}
}