drm/amdgpu: add missing DCE6 to dce_version_to_string()

Missing DCE 6.0 6.1 and 6.4 are identified as UNKNOWN. Fix this.

Signed-off-by: Alexandre Demers <alexandre.f.demers@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Alexandre Demers 2025-04-13 16:51:21 -04:00 committed by Alex Deucher
parent 85207abb40
commit 00ec6732a9

View File

@ -689,6 +689,12 @@ void reg_sequence_wait_done(const struct dc_context *ctx)
char *dce_version_to_string(const int version)
{
switch (version) {
case DCE_VERSION_6_0:
return "DCE 6.0";
case DCE_VERSION_6_1:
return "DCE 6.1";
case DCE_VERSION_6_4:
return "DCE 6.4";
case DCE_VERSION_8_0:
return "DCE 8.0";
case DCE_VERSION_8_1: