From 0b21fcb214c46d2d3ff03d7c2abe5f50470ad83c Mon Sep 17 00:00:00 2001 From: Sathishkumar S Date: Wed, 25 May 2022 14:45:08 +0530 Subject: [PATCH] tests/amdgpu: fix decode test failure on VCN2.5 For VCN2.5 wrong index was chosen, fix it. Signed-off-by: Sathishkumar S Reviewed-by: Leo Liu --- tests/amdgpu/vcn_tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/amdgpu/vcn_tests.c b/tests/amdgpu/vcn_tests.c index ff97f344..a924fec6 100644 --- a/tests/amdgpu/vcn_tests.c +++ b/tests/amdgpu/vcn_tests.c @@ -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)