Skip to content

Commit 87144bb

Browse files
committed
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/[email protected] Signed-off-by: Takashi Sakamoto <[email protected]>
1 parent 6b0b708 commit 87144bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/trace/events/firewire.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ DECLARE_EVENT_CLASS(async_inbound_template,
106106
__field(u8, generation)
107107
__field(u8, scode)
108108
__field(u8, status)
109-
__field(u8, timestamp)
109+
__field(u16, timestamp)
110110
__array(u32, header, ASYNC_HEADER_QUADLET_COUNT)
111111
__dynamic_array(u32, data, data_count)
112112
),

0 commit comments

Comments
 (0)