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>
This commit is contained in:
parent
ae510a6a22
commit
b5f45d8eb6
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue