tracepoints: Documentation TPPROTO misspelt in Documentation/tracepoints.txt
authorNikanth Karthikesan <knikanth@suse.de>
Sat, 29 Nov 2008 10:13:32 +0000 (15:43 +0530)
committerIngo Molnar <mingo@elte.hu>
Sat, 29 Nov 2008 14:13:42 +0000 (15:13 +0100)
Impact: fix typo in documentation

TPPROTO is misspelt in Documentation/tracepoints.txt
Kept me wondering what was wrong, when I was trying to add a new tracepoint
subsystem.

Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Documentation/tracepoints.txt

index 2d42241..6f0a044 100644 (file)
@@ -45,7 +45,7 @@ In include/trace/subsys.h :
 #include <linux/tracepoint.h>
 
 DECLARE_TRACE(subsys_eventname,
-       TPPTOTO(int firstarg, struct task_struct *p),
+       TPPROTO(int firstarg, struct task_struct *p),
        TPARGS(firstarg, p));
 
 In subsys/file.c (where the tracing statement must be added) :
@@ -66,7 +66,7 @@ Where :
     - subsys is the name of your subsystem.
     - eventname is the name of the event to trace.
 
-- TPPTOTO(int firstarg, struct task_struct *p) is the prototype of the
+- TPPROTO(int firstarg, struct task_struct *p) is the prototype of the
   function called by this tracepoint.
 
 - TPARGS(firstarg, p) are the parameters names, same as found in the