mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 11:51:27 +00:00
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,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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user