diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2024-05-06 11:21:53 +0300 |
---|---|---|
committer | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2024-05-06 11:53:34 +0300 |
commit | 87144bbc9935b3117495c330890184edb925f3c5 (patch) | |
tree | 580ed7dda59080ecda15c3b7d600350a90472c4a /include/trace/events/firewire.h | |
parent | 6b0b708f12d18f9cccfb1c418bea59fcbff8798c (diff) | |
download | linux-87144bbc9935b3117495c330890184edb925f3c5.tar.xz |
firewire: core: fix type of timestamp for async_inbound_template tracepoints events
The type of time stamp should be u16, instead of u8.
Link: https://lore.kernel.org/r/20240506082154.396077-1-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Diffstat (limited to 'include/trace/events/firewire.h')
-rw-r--r-- | include/trace/events/firewire.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/firewire.h b/include/trace/events/firewire.h index 4163959be57a..9e79c864fff6 100644 --- a/include/trace/events/firewire.h +++ b/include/trace/events/firewire.h @@ -106,7 +106,7 @@ DECLARE_EVENT_CLASS(async_inbound_template, __field(u8, generation) __field(u8, scode) __field(u8, status) - __field(u8, timestamp) + __field(u16, timestamp) __array(u32, header, ASYNC_HEADER_QUADLET_COUNT) __dynamic_array(u32, data, data_count) ), |