Skip to content

Commit 33ef9cd

Browse files
committed
m1n1.adt: Fix GPUPerfStates64 for T6022
Signed-off-by: Hector Martin <[email protected]>
1 parent bb0e9ac commit 33ef9cd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

proxyclient/m1n1/adt.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@
148148
)
149149

150150
GPUPerfStates64 = Struct(
151-
"base" / Int64ul,
151+
"dies" / Int64ul,
152152
"count" / Int64ul,
153-
"states" / GreedyRange(GPUPerfState64),
154-
"min_sram_volt" / Int64ul,
153+
"states" / Array(this.dies, Array(this.count, GPUPerfState64)),
154+
"min_sram_volt" / Array(this.dies, Int64ul),
155155
)
156156

157157
SpeakerConfig = Struct(

0 commit comments

Comments
 (0)