Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 73270bb4 authored by Rahul Krishnan's avatar Rahul Krishnan Committed by Greg Kroah-Hartman
Browse files

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: default avatarRahul Krishnan <mrahul.krishnan@gmail.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7fec2bc9
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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;