aboutsummaryrefslogtreecommitdiff
path: root/src/core/tracer/citrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/tracer/citrace.h')
-rw-r--r--src/core/tracer/citrace.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/core/tracer/citrace.h b/src/core/tracer/citrace.h
index 709abdfb3..215f86359 100644
--- a/src/core/tracer/citrace.h
+++ b/src/core/tracer/citrace.h
@@ -61,8 +61,8 @@ struct CTHeader {
};
enum CTStreamElementType : u32 {
- FrameMarker = 0xE1,
- MemoryLoad = 0xE2,
+ FrameMarker = 0xE1,
+ MemoryLoad = 0xE2,
RegisterWrite = 0xE3,
};
@@ -77,10 +77,10 @@ struct CTRegisterWrite {
u32 physical_address;
enum : u32 {
- SIZE_8 = 0xD1,
+ SIZE_8 = 0xD1,
SIZE_16 = 0xD2,
SIZE_32 = 0xD3,
- SIZE_64 = 0xD4
+ SIZE_64 = 0xD4,
} size;
// TODO: Make it clearer which bits of this member are used for sizes other than 32 bits
@@ -97,5 +97,4 @@ struct CTStreamElement {
};
#pragma pack()
-
}