From: Gulsah Kose Date: Sat, 20 Sep 2014 18:53:31 +0000 (+0300) Subject: staging: lustre: lnet: lnet: Fix quoted string split warning. X-Git-Tag: v4.14-rc1~6739^2~326 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a446b47d5d815865c2715da8fab1a7c06f1338ca;p=platform%2Fkernel%2Flinux-rpi.git staging: lustre: lnet: lnet: Fix quoted string split warning. This patch fixes "quoted string split across lines" checkpatch.pl warning in lib-eq.c Signed-off-by: Gulsah Kose Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lnet/lnet/lib-eq.c b/drivers/staging/lustre/lnet/lnet/lib-eq.c index 6c04842..863cc37 100644 --- a/drivers/staging/lustre/lnet/lnet/lib-eq.c +++ b/drivers/staging/lustre/lnet/lnet/lib-eq.c @@ -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