Commit 0b924cd6 authored by Tom Rix's avatar Tom Rix Committed by Alex Deucher
Browse files

drm/amd/display: remove unneeded semicolon



A semicolon is not needed after a switch statement.

Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent aec576f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -858,7 +858,7 @@ static struct clock_source *find_matching_pll(
		return pool->clock_sources[DCE112_CLK_SRC_PLL5];
	default:
		return NULL;
	};
	}

	return 0;
}
+1 −1
Original line number Diff line number Diff line
@@ -280,6 +280,6 @@ char *mod_hdcp_state_id_to_str(int32_t id)
		return "D2_A9_VALIDATE_STREAM_READY";
	default:
		return "UNKNOWN_STATE_ID";
	};
	}
}