public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tracing: Fix a comment and a trivial format issue in  tracepoint.h
@ 2009-09-22 10:00 Li Hong
  2009-09-22 20:45 ` Frederic Weisbecker
  2009-09-23  9:04 ` [tip:tracing/urgent] " tip-bot for Li Hong
  0 siblings, 2 replies; 3+ messages in thread
From: Li Hong @ 2009-09-22 10:00 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: Frederic Weisbecker, Ingo Molnar, LKML

Signed-off-by: Li Hong <lihong.hi@gmail.com>

diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
index 63a3f7a..2aac8a8 100644
--- a/include/linux/tracepoint.h
+++ b/include/linux/tracepoint.h
@@ -4,7 +4,7 @@
 /*
  * Kernel Tracepoint API.
  *
- * See Documentation/tracepoint.txt.
+ * See Documentation/trace/tracepoints.txt.
  *
  * (C) Copyright 2008 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
  *
@@ -36,7 +36,7 @@ struct tracepoint {
 #ifndef DECLARE_TRACE

 #define TP_PROTO(args...)	args
-#define TP_ARGS(args...)		args
+#define TP_ARGS(args...)	args

 #ifdef CONFIG_TRACEPOINTS

-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] tracing: Fix a comment and a trivial format issue in tracepoint.h
  2009-09-22 10:00 [PATCH] tracing: Fix a comment and a trivial format issue in tracepoint.h Li Hong
@ 2009-09-22 20:45 ` Frederic Weisbecker
  2009-09-23  9:04 ` [tip:tracing/urgent] " tip-bot for Li Hong
  1 sibling, 0 replies; 3+ messages in thread
From: Frederic Weisbecker @ 2009-09-22 20:45 UTC (permalink / raw)
  To: Li Hong; +Cc: Steven Rostedt, Ingo Molnar, LKML

On Tue, Sep 22, 2009 at 06:00:44PM +0800, Li Hong wrote:
> Signed-off-by: Li Hong <lihong.hi@gmail.com>


Queued, thanks!



> diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
> index 63a3f7a..2aac8a8 100644
> --- a/include/linux/tracepoint.h
> +++ b/include/linux/tracepoint.h
> @@ -4,7 +4,7 @@
>  /*
>   * Kernel Tracepoint API.
>   *
> - * See Documentation/tracepoint.txt.
> + * See Documentation/trace/tracepoints.txt.
>   *
>   * (C) Copyright 2008 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
>   *
> @@ -36,7 +36,7 @@ struct tracepoint {
>  #ifndef DECLARE_TRACE
> 
>  #define TP_PROTO(args...)	args
> -#define TP_ARGS(args...)		args
> +#define TP_ARGS(args...)	args
> 
>  #ifdef CONFIG_TRACEPOINTS
> 
> -- 
> 1.6.0.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [tip:tracing/urgent] tracing: Fix a comment and a trivial format issue in tracepoint.h
  2009-09-22 10:00 [PATCH] tracing: Fix a comment and a trivial format issue in tracepoint.h Li Hong
  2009-09-22 20:45 ` Frederic Weisbecker
@ 2009-09-23  9:04 ` tip-bot for Li Hong
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Li Hong @ 2009-09-23  9:04 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, lihong.hi, hpa, mingo, fweisbec, rostedt, tglx

Commit-ID:  8cd09a5984c08dafade74c9c1ab4311af2bf2d24
Gitweb:     http://git.kernel.org/tip/8cd09a5984c08dafade74c9c1ab4311af2bf2d24
Author:     Li Hong <lihong.hi@gmail.com>
AuthorDate: Tue, 22 Sep 2009 18:00:44 +0800
Committer:  Frederic Weisbecker <fweisbec@gmail.com>
CommitDate: Tue, 22 Sep 2009 23:14:58 +0200

tracing: Fix a comment and a trivial format issue in tracepoint.h

Fix the tracepoint documentation path in tracepoints headers and
a misaligned tabulation.

Signed-off-by: Li Hong <lihong.hi@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Ingo Molnar <mingo@redhat.com>
LKML-Reference: <3a3680030909220300h7cf18849q4d4702b9d4feaa67@mail.gmail.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>


---
 include/linux/tracepoint.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
index 63a3f7a..2aac8a8 100644
--- a/include/linux/tracepoint.h
+++ b/include/linux/tracepoint.h
@@ -4,7 +4,7 @@
 /*
  * Kernel Tracepoint API.
  *
- * See Documentation/tracepoint.txt.
+ * See Documentation/trace/tracepoints.txt.
  *
  * (C) Copyright 2008 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
  *
@@ -36,7 +36,7 @@ struct tracepoint {
 #ifndef DECLARE_TRACE
 
 #define TP_PROTO(args...)	args
-#define TP_ARGS(args...)		args
+#define TP_ARGS(args...)	args
 
 #ifdef CONFIG_TRACEPOINTS
 

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-23  9:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-22 10:00 [PATCH] tracing: Fix a comment and a trivial format issue in tracepoint.h Li Hong
2009-09-22 20:45 ` Frederic Weisbecker
2009-09-23  9:04 ` [tip:tracing/urgent] " tip-bot for Li Hong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox