aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace/events/host1x.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/trace/events/host1x.h')
-rw-r--r--include/trace/events/host1x.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/include/trace/events/host1x.h b/include/trace/events/host1x.h
index 63116362543c..a37ef73092e5 100644
--- a/include/trace/events/host1x.h
+++ b/include/trace/events/host1x.h
@@ -115,16 +115,15 @@ TRACE_EVENT(host1x_cdma_push_gather,
115); 115);
116 116
117TRACE_EVENT(host1x_channel_submit, 117TRACE_EVENT(host1x_channel_submit,
118 TP_PROTO(const char *name, u32 cmdbufs, u32 relocs, u32 waitchks, 118 TP_PROTO(const char *name, u32 cmdbufs, u32 relocs, u32 syncpt_id,
119 u32 syncpt_id, u32 syncpt_incrs), 119 u32 syncpt_incrs),
120 120
121 TP_ARGS(name, cmdbufs, relocs, waitchks, syncpt_id, syncpt_incrs), 121 TP_ARGS(name, cmdbufs, relocs, syncpt_id, syncpt_incrs),
122 122
123 TP_STRUCT__entry( 123 TP_STRUCT__entry(
124 __field(const char *, name) 124 __field(const char *, name)
125 __field(u32, cmdbufs) 125 __field(u32, cmdbufs)
126 __field(u32, relocs) 126 __field(u32, relocs)
127 __field(u32, waitchks)
128 __field(u32, syncpt_id) 127 __field(u32, syncpt_id)
129 __field(u32, syncpt_incrs) 128 __field(u32, syncpt_incrs)
130 ), 129 ),
@@ -133,15 +132,14 @@ TRACE_EVENT(host1x_channel_submit,
133 __entry->name = name; 132 __entry->name = name;
134 __entry->cmdbufs = cmdbufs; 133 __entry->cmdbufs = cmdbufs;
135 __entry->relocs = relocs; 134 __entry->relocs = relocs;
136 __entry->waitchks = waitchks;
137 __entry->syncpt_id = syncpt_id; 135 __entry->syncpt_id = syncpt_id;
138 __entry->syncpt_incrs = syncpt_incrs; 136 __entry->syncpt_incrs = syncpt_incrs;
139 ), 137 ),
140 138
141 TP_printk("name=%s, cmdbufs=%u, relocs=%u, waitchks=%d," 139 TP_printk("name=%s, cmdbufs=%u, relocs=%u, syncpt_id=%u, "
142 "syncpt_id=%u, syncpt_incrs=%u", 140 "syncpt_incrs=%u",
143 __entry->name, __entry->cmdbufs, __entry->relocs, __entry->waitchks, 141 __entry->name, __entry->cmdbufs, __entry->relocs,
144 __entry->syncpt_id, __entry->syncpt_incrs) 142 __entry->syncpt_id, __entry->syncpt_incrs)
145); 143);
146 144
147TRACE_EVENT(host1x_channel_submitted, 145TRACE_EVENT(host1x_channel_submitted,