From: Rahul Krishnan Date: Fri, 21 Oct 2016 15:29:28 +0000 (+0530) Subject: Staging: Greybus: Fix trailing */ in block comments X-Git-Tag: v4.10-rc1~148^2~496 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=73270bb498301d733d5e2679b5638fd071c49ef3;p=karo-tx-linux.git 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 Acked-by: Viresh Kumar Signed-off-by: Greg Kroah-Hartman --- 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;