mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 08:15:07 -04:00
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:
committed by
Alex Deucher
parent
85207abb40
commit
00ec6732a9
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user