Commit b5f45d8e authored by Rashika Kheria's avatar Rashika Kheria Committed by Greg Kroah-Hartman

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: default avatarRashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ae510a6a
...@@ -915,8 +915,8 @@ static struct dynload_symbol *dbll_find_symbol(struct dynamic_loader_sym *this, ...@@ -915,8 +915,8 @@ static struct dynload_symbol *dbll_find_symbol(struct dynamic_loader_sym *this,
status = dbll_get_addr((struct dbll_library_obj *)lib, status = dbll_get_addr((struct dbll_library_obj *)lib,
(char *)name, &dbll_sym); (char *)name, &dbll_sym);
if (!status) { if (!status) {
status = status = dbll_get_c_addr(
dbll_get_c_addr((struct dbll_library_obj *) (struct dbll_library_obj *)
lib, (char *)name, lib, (char *)name,
&dbll_sym); &dbll_sym);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment