staging: lustre: lnet: lnet: Fix quoted string split warning.
authorGulsah Kose <gulsah.1004@gmail.com>
Sat, 20 Sep 2014 18:53:31 +0000 (21:53 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Sep 2014 00:37:16 +0000 (17:37 -0700)
This patch fixes "quoted string split across lines" checkpatch.pl
warning in lib-eq.c

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/lnet/lib-eq.c

index 6c0484285dfc7c2cb806fa797c9a02b7835d202e..863cc3735edfdf9714920cb5d0414c52d98aec0b 100644 (file)
@@ -82,10 +82,7 @@ LNetEQAlloc(unsigned int count, lnet_eq_handler_t callback,
        count = cfs_power2_roundup(count);
 
        if (callback != LNET_EQ_HANDLER_NONE && count != 0) {
-               CWARN("EQ callback is guaranteed to get every event, "
-                     "do you still want to set eqcount %d for polling "
-                     "event which will have locking overhead? "
-                     "Please contact with developer to confirm\n", count);
+               CWARN("EQ callback is guaranteed to get every event, do you still want to set eqcount %d for polling event which will have locking overhead? Please contact with developer to confirm\n", count);
        }
 
        /* count can be 0 if only need callback, we can eliminate
This page took 0.025218 seconds and 5 git commands to generate.