]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/trace/workqueue.h
tracing: replace TP<var> with TP_<var>
[linux-2.6-omap-h63xx.git] / include / trace / workqueue.h
index 867829df45714c761bb6bca6f1a3c34c05e0a4a1..7626523deeba5f8611c70777878d500ada0d7cb3 100644 (file)
@@ -6,20 +6,20 @@
 #include <linux/sched.h>
 
 DECLARE_TRACE(workqueue_insertion,
-          TPPROTO(struct task_struct *wq_thread, struct work_struct *work),
-          TPARGS(wq_thread, work));
+          TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
+          TP_ARGS(wq_thread, work));
 
 DECLARE_TRACE(workqueue_execution,
-          TPPROTO(struct task_struct *wq_thread, struct work_struct *work),
-          TPARGS(wq_thread, work));
+          TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
+          TP_ARGS(wq_thread, work));
 
 /* Trace the creation of one workqueue thread on a cpu */
 DECLARE_TRACE(workqueue_creation,
-          TPPROTO(struct task_struct *wq_thread, int cpu),
-          TPARGS(wq_thread, cpu));
+          TP_PROTO(struct task_struct *wq_thread, int cpu),
+          TP_ARGS(wq_thread, cpu));
 
 DECLARE_TRACE(workqueue_destruction,
-          TPPROTO(struct task_struct *wq_thread),
-          TPARGS(wq_thread));
+          TP_PROTO(struct task_struct *wq_thread),
+          TP_ARGS(wq_thread));
 
 #endif /* __TRACE_WORKQUEUE_H */