mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 08:10:11 +01:00
tests/amdgpu: fix decode test failure on VCN2.5
For VCN2.5 wrong index was chosen, fix it. Signed-off-by: Sathishkumar S <sathishkumar.sundararaju@amd.com> Reviewed-by: Leo Liu <leo.liu@amd.com>
This commit is contained in:
parent
f83ad09dc0
commit
0b21fcb214
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ CU_BOOL suite_vcn_tests_enable(void)
|
|||
|
||||
if (info.hw_ip_version_major == 1)
|
||||
vcn_reg_index = 0;
|
||||
else if (info.hw_ip_version_major == 2)
|
||||
else if (info.hw_ip_version_major == 2 && info.hw_ip_version_minor == 0)
|
||||
vcn_reg_index = 1;
|
||||
else if ((info.hw_ip_version_major == 2 && info.hw_ip_version_minor >= 5) ||
|
||||
info.hw_ip_version_major == 3)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue