mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-07 22:34:18 +08:00
Staging: line6: Fix unnecessary space after function pointer in driver.c
This patch fixes the following checkpatch.pl issues in driver.c: WARNING: unnecessary space after function pointer in driver.c Signed-off-by: Monam Agarwal <monamagarwal123@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
012317f7d6
commit
1cad608ec2
@ -217,7 +217,7 @@ static int line6_send_raw_message_async_part(struct message *msg,
|
|||||||
Setup and start timer.
|
Setup and start timer.
|
||||||
*/
|
*/
|
||||||
void line6_start_timer(struct timer_list *timer, unsigned int msecs,
|
void line6_start_timer(struct timer_list *timer, unsigned int msecs,
|
||||||
void (*function) (unsigned long), unsigned long data)
|
void (*function)(unsigned long), unsigned long data)
|
||||||
{
|
{
|
||||||
setup_timer(timer, function, data);
|
setup_timer(timer, function, data);
|
||||||
timer->expires = jiffies + msecs * HZ / 1000;
|
timer->expires = jiffies + msecs * HZ / 1000;
|
||||||
|
Loading…
Reference in New Issue
Block a user