mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-02-16 21:58:27 +00:00
m1n1.fw.agx.channels: Fix KTrace message size/count
Signed-off-by: Asahi Lina <lina@asahilina.net>
This commit is contained in:
parent
59bce08297
commit
35067afec3
1 changed files with 2 additions and 2 deletions
|
@ -308,7 +308,7 @@ EventMsg = FixedSized(0x38, Select(
|
|||
|
||||
class KTraceMsg(ConstructClass):
|
||||
subcon = Struct (
|
||||
"unk" / HexDump(Bytes(0x70)),
|
||||
"unk" / HexDump(Bytes(0x38)),
|
||||
)
|
||||
|
||||
class FWCtlMsg(ConstructClass):
|
||||
|
@ -347,7 +347,7 @@ channelRings = (
|
|||
(FWLogMsg, 0xd8, 0x100), # unk 4
|
||||
(FWLogMsg, 0xd8, 0x100), # unk 5
|
||||
],
|
||||
[(KTraceMsg, 0x70, 0x100)],
|
||||
[(KTraceMsg, 0x38, 0x200)],
|
||||
[(StatsMsg, 0x30, 0x100)],
|
||||
[(FWCtlMsg, 0x14, 0x100)],
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue