mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
winsys/amdgpu: fix ADDR_REGISTER_VALUE::backendDisables
This would be a fix if the value was used anywhere. Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
80157a2c20
commit
9327780da6
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ ADDR_HANDLE amdgpu_addr_create(struct amdgpu_winsys *ws)
|
|||
regValue.gbAddrConfig = ws->amdinfo.gb_addr_cfg;
|
||||
regValue.noOfRanks = (ws->amdinfo.mc_arb_ramcfg & 0x4) >> 2;
|
||||
|
||||
regValue.backendDisables = ws->amdinfo.backend_disable[0];
|
||||
regValue.backendDisables = ws->amdinfo.enabled_rb_pipes_mask;
|
||||
regValue.pTileConfig = ws->amdinfo.gb_tile_mode;
|
||||
regValue.noOfEntries = ARRAY_SIZE(ws->amdinfo.gb_tile_mode);
|
||||
if (ws->info.chip_class == SI) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue