]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: Greybus: Fix trailing */ in block comments
authorRahul Krishnan <mrahul.krishnan@gmail.com>
Fri, 21 Oct 2016 15:29:28 +0000 (20:59 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Oct 2016 13:48:02 +0000 (15:48 +0200)
This patch fixes the following checkpath.pl warning
WARNING: Block comments use a trailing */ on a separate line

Signed-off-by: Rahul Krishnan <mrahul.krishnan@gmail.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/greybus/log.c

index 70dd9e5a1cf2da831d37a180f2fd18f25568222d..1a18ab1ff8aaefc4c7f802e74c66ed5cf213b4b9 100644 (file)
@@ -55,8 +55,10 @@ static int gb_log_request_handler(struct gb_operation *op)
        /* Ensure the buffer is 0 terminated */
        receive->msg[len - 1] = '\0';
 
-       /* Print with dev_dbg() so that it can be easily turned off using
-        * dynamic debugging (and prevent any DoS) */
+       /*
+        * Print with dev_dbg() so that it can be easily turned off using
+        * dynamic debugging (and prevent any DoS)
+        */
        dev_dbg(dev, "%s", receive->msg);
 
        return 0;