mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-18 17:53:10 +00:00
m1n1.fw.dcp.ipc: Correct CompressionInfo.sizeof() assert
Fixes a copy-n-paste error adding a second assert for PlaneInfo.sizeof()
with CompressionInfo's size.
Fixes: 3e572aba4a
("m1n1.fw.dcp.ipc: Add compression info struct")
Signed-off-by: Janne Grunau <j@jannau.net>
This commit is contained in:
parent
cc6b58f13e
commit
d6b6470bef
1 changed files with 1 additions and 1 deletions
|
@ -534,7 +534,7 @@ CompressionInfo = Struct(
|
||||||
"pad2" / Padding(1),
|
"pad2" / Padding(1),
|
||||||
)
|
)
|
||||||
|
|
||||||
assert PlaneInfo.sizeof() == 0x34
|
assert CompressionInfo.sizeof() == 0x34
|
||||||
|
|
||||||
IOSurface = Struct(
|
IOSurface = Struct(
|
||||||
"is_tiled" / bool_,
|
"is_tiled" / bool_,
|
||||||
|
|
Loading…
Reference in a new issue