mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
intel/decoders: fix instruction base address parsing
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 00103db04a ("intel: Fix decoding for partial STATE_BASE_ADDRESS updates.")
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
b3ade65387
commit
b47a69ed4c
2 changed files with 2 additions and 2 deletions
|
|
@ -214,7 +214,7 @@ handle_state_base_address(struct gen_batch_decode_ctx *ctx, const uint32_t *p)
|
|||
surface_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Dynamic State Base Address Modify Enable") == 0) {
|
||||
dynamic_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Insntruction Base Address Modify Enable") == 0) {
|
||||
} else if (strcmp(iter.name, "Instruction Base Address Modify Enable") == 0) {
|
||||
instruction_modify = iter.raw_value;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ handle_state_base_address(struct aub_viewer_decode_ctx *ctx,
|
|||
surface_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Dynamic State Base Address Modify Enable") == 0) {
|
||||
dynamic_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Insntruction Base Address Modify Enable") == 0) {
|
||||
} else if (strcmp(iter.name, "Instruction Base Address Modify Enable") == 0) {
|
||||
instruction_modify = iter.raw_value;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue