tracing: replace TP<var> with TP_<var>
[linux-flexiantxendom0-natty.git] / include / trace / irq_event_types.h
index 65850bc..0147d9e 100644 (file)
@@ -9,25 +9,25 @@
 #define TRACE_SYSTEM irq
 
 TRACE_EVENT_FORMAT(irq_handler_entry,
-       TPPROTO(int irq, struct irqaction *action),
-       TPARGS(irq, action),
-       TPFMT("irq=%d handler=%s", irq, action->name),
+       TP_PROTO(int irq, struct irqaction *action),
+       TP_ARGS(irq, action),
+       TP_FMT("irq=%d handler=%s", irq, action->name),
        TRACE_STRUCT(
                TRACE_FIELD(int, irq, irq)
        ),
-       TPRAWFMT("irq %d")
+       TP_RAW_FMT("irq %d")
        );
 
 TRACE_EVENT_FORMAT(irq_handler_exit,
-       TPPROTO(int irq, struct irqaction *action, int ret),
-       TPARGS(irq, action, ret),
-       TPFMT("irq=%d handler=%s return=%s",
+       TP_PROTO(int irq, struct irqaction *action, int ret),
+       TP_ARGS(irq, action, ret),
+       TP_FMT("irq=%d handler=%s return=%s",
                irq, action->name, ret ? "handled" : "unhandled"),
        TRACE_STRUCT(
                TRACE_FIELD(int, irq, irq)
                TRACE_FIELD(int, ret, ret)
        ),
-       TPRAWFMT("irq %d ret %d")
+       TP_RAW_FMT("irq %d ret %d")
        );
 
 #undef TRACE_SYSTEM