mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 18:12:25 -04:00
staging: greybus: fix line ending with '('
Splitting function header to multiple lines because of 80 characters per
line limit, results in ending the function call line with '('.
This leads to CHECK reported by checkpatch.pl
Move the first parameter right after the '(' in the function call line.
Align the rest of the parameters to the opening parenthesis.
Signed-off-by: Khadija Kamran <kamrankhadijadj@gmail.com>
Link: https://lore.kernel.org/r/ZBhNOkQbG4ygNF98@khadija-virtual-machine
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
dc467faa23
commit
ba32601bdb
@@ -24,9 +24,8 @@ struct gbaudio_ctl_pvt {
|
||||
struct gb_audio_ctl_elem_info *info;
|
||||
};
|
||||
|
||||
static struct gbaudio_module_info *find_gb_module(
|
||||
struct gbaudio_codec_info *codec,
|
||||
char const *name)
|
||||
static struct gbaudio_module_info *find_gb_module(struct gbaudio_codec_info *codec,
|
||||
char const *name)
|
||||
{
|
||||
int dev_id;
|
||||
char begin[NAME_SIZE];
|
||||
|
||||
Reference in New Issue
Block a user