drivers: staging: lustre: lustre: ptlrpc: Fix space related coding style issue
authorTapan Prakash T <tapanprakasht@gmail.com>
Sun, 28 Feb 2016 14:34:15 +0000 (20:04 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 2 Mar 2016 03:30:59 +0000 (19:30 -0800)
Fixed checkpatch.pl warning space prohibited between function name and
open parenthesis '('

Signed-off-by: Tapan Prakash T <tapanprakasht@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/ptlrpc/service.c

index 79415401a04a5f72592ea2f949d0080e341ef94e..1bbd1d39ccf8616243b406dab2b45ef891949e6d 100644 (file)
@@ -2207,7 +2207,7 @@ static int ptlrpc_hr_main(void *arg)
 {
        struct ptlrpc_hr_thread *hrt = arg;
        struct ptlrpc_hr_partition *hrp = hrt->hrt_partition;
-       LIST_HEAD       (replies);
+       LIST_HEAD(replies);
        char threadname[20];
        int rc;
 
@@ -2306,7 +2306,7 @@ static void ptlrpc_svcpt_stop_threads(struct ptlrpc_service_part *svcpt)
 {
        struct l_wait_info lwi = { 0 };
        struct ptlrpc_thread *thread;
-       LIST_HEAD       (zombie);
+       LIST_HEAD(zombie);
 
        CDEBUG(D_INFO, "Stopping threads for service %s\n",
               svcpt->scp_service->srv_name);
This page took 0.028967 seconds and 5 git commands to generate.