Skip to content
Snippets Groups Projects
Commit a27b7481 authored by Marek Olšák's avatar Marek Olšák
Browse files

radeonsi: small fix in SPI state


Cc: 10.5 10.4 <mesa-stable@lists.freedesktop.org>
Reviewed-by: default avatarMichel Dänzer <michel.daenzer@amd.com>
parent 5f1cef76
No related branches found
No related tags found
Loading
......@@ -662,8 +662,10 @@ bcolor:
}
if (j == vsinfo->num_outputs) {
/* No corresponding output found, load defaults into input */
tmp |= S_028644_OFFSET(0x20);
/* No corresponding output found, load defaults into input.
* Don't set any other bits.
* (FLAT_SHADE=1 completely changes behavior) */
tmp = S_028644_OFFSET(0x20);
}
si_pm4_set_reg(pm4,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment