From: Mathieu Desnoyers Date: Thu, 6 Jan 2011 18:45:32 +0000 (-0500) Subject: tracing/trivial: Add missing comma in TRACE_EVENT comment X-Git-Tag: v2.6.38-rc1~2^2~18^2~5 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ec6e7c3ae39cb1dc279b5274aaaadd09ff8e224b;p=uclinux-h8%2Flinux.git tracing/trivial: Add missing comma in TRACE_EVENT comment Add missing comma within the TRACE_EVENT() example in tracepoint.h. Signed-off-by: Mathieu Desnoyers LKML-Reference: <20110106184532.GA2526@Krystal> CC: Frederic Weisbecker CC: Ingo Molnar CC: Thomas Gleixner Signed-off-by: Steven Rostedt --- diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index d3e4f87e95c0..899103c8f6f2 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h @@ -326,7 +326,7 @@ do_trace: \ * memcpy(__entry->prev_comm, prev->comm, TASK_COMM_LEN); * __entry->next_pid = next->pid; * __entry->next_prio = next->prio; - * ) + * ), * * * * * Formatted output of a trace record via TP_printk().