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

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
...@@ -858,7 +858,7 @@ static struct clock_source *find_matching_pll( ...@@ -858,7 +858,7 @@ static struct clock_source *find_matching_pll(
return pool->clock_sources[DCE112_CLK_SRC_PLL5]; return pool->clock_sources[DCE112_CLK_SRC_PLL5];
default: default:
return NULL; return NULL;
}; }
return 0; return 0;
} }
......
...@@ -280,6 +280,6 @@ char *mod_hdcp_state_id_to_str(int32_t id) ...@@ -280,6 +280,6 @@ char *mod_hdcp_state_id_to_str(int32_t id)
return "D2_A9_VALIDATE_STREAM_READY"; return "D2_A9_VALIDATE_STREAM_READY";
default: default:
return "UNKNOWN_STATE_ID"; return "UNKNOWN_STATE_ID";
}; }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment