Staging: line6: Fix unnecessary space after function pointer in driver.c
authorMonam Agarwal <monamagarwal123@gmail.com>
Thu, 27 Feb 2014 15:35:18 +0000 (21:05 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Feb 2014 23:15:58 +0000 (15:15 -0800)
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>
drivers/staging/line6/driver.c

index 7a6d85e..e7a9d8d 100644 (file)
@@ -217,7 +217,7 @@ static int line6_send_raw_message_async_part(struct message *msg,
        Setup and start timer.
 */
 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);
        timer->expires = jiffies + msecs * HZ / 1000;