summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRahul Krishnan <mrahul.krishnan@gmail.com>2016-10-21 20:59:28 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-10-24 15:48:02 +0200
commit73270bb498301d733d5e2679b5638fd071c49ef3 (patch)
tree6ab6c45a94e8f9657240235ad482bbe4fa248968
parent7fec2bc90a4ca0bbdedf6724cb539dad23e99070 (diff)
downloadlinux-73270bb498301d733d5e2679b5638fd071c49ef3.tar.gz
linux-73270bb498301d733d5e2679b5638fd071c49ef3.tar.bz2
linux-73270bb498301d733d5e2679b5638fd071c49ef3.zip
Staging: Greybus: Fix trailing */ in block comments
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>
-rw-r--r--drivers/staging/greybus/log.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/greybus/log.c b/drivers/staging/greybus/log.c
index 70dd9e5a1cf2..1a18ab1ff8aa 100644
--- a/drivers/staging/greybus/log.c
+++ b/drivers/staging/greybus/log.c
@@ -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;