aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace
diff options
context:
space:
mode:
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/fsi_master_gpio.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/trace/events/fsi_master_gpio.h b/include/trace/events/fsi_master_gpio.h
index 33e928c5acf3..389082132433 100644
--- a/include/trace/events/fsi_master_gpio.h
+++ b/include/trace/events/fsi_master_gpio.h
@@ -64,6 +64,33 @@ TRACE_EVENT(fsi_master_gpio_break,
64 ) 64 )
65); 65);
66 66
67TRACE_EVENT(fsi_master_gpio_crc_cmd_error,
68 TP_PROTO(const struct fsi_master_gpio *master),
69 TP_ARGS(master),
70 TP_STRUCT__entry(
71 __field(int, master_idx)
72 ),
73 TP_fast_assign(
74 __entry->master_idx = master->master.idx;
75 ),
76 TP_printk("fsi-gpio%d ----CRC command retry---",
77 __entry->master_idx
78 )
79);
80
81TRACE_EVENT(fsi_master_gpio_crc_rsp_error,
82 TP_PROTO(const struct fsi_master_gpio *master),
83 TP_ARGS(master),
84 TP_STRUCT__entry(
85 __field(int, master_idx)
86 ),
87 TP_fast_assign(
88 __entry->master_idx = master->master.idx;
89 ),
90 TP_printk("fsi-gpio%d ----CRC response---",
91 __entry->master_idx
92 )
93);
67 94
68TRACE_EVENT(fsi_master_gpio_poll_response_busy, 95TRACE_EVENT(fsi_master_gpio_poll_response_busy,
69 TP_PROTO(const struct fsi_master_gpio *master, int busy), 96 TP_PROTO(const struct fsi_master_gpio *master, int busy),