Commit 00ec6732 authored by Alexandre Demers's avatar Alexandre Demers Committed by Alex Deucher
Browse files

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: default avatarAlexandre Demers <alexandre.f.demers@gmail.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 85207abb
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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: