drm/amd/display: fix typo in function name
s/amdgpu_dm_find_first_crct_matching_connector/ amdgpu_dm_find_first_crtc_matching_connector/ And while here, make it static. Reviewed-by: Harry Wentland <harry.wentland@amd.com> Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
5cc6dcbd45
commit
1daf8c6348
@ -568,9 +568,9 @@ static int dm_suspend(void *handle)
|
||||
return ret;
|
||||
}
|
||||
|
||||
struct amdgpu_dm_connector *amdgpu_dm_find_first_crct_matching_connector(
|
||||
struct drm_atomic_state *state,
|
||||
struct drm_crtc *crtc)
|
||||
static struct amdgpu_dm_connector *
|
||||
amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state,
|
||||
struct drm_crtc *crtc)
|
||||
{
|
||||
uint32_t i;
|
||||
struct drm_connector_state *new_con_state;
|
||||
@ -4110,7 +4110,7 @@ void amdgpu_dm_atomic_commit_tail(
|
||||
dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
|
||||
|
||||
new_stream = dm_new_crtc_state->stream;
|
||||
aconnector = amdgpu_dm_find_first_crct_matching_connector(
|
||||
aconnector = amdgpu_dm_find_first_crtc_matching_connector(
|
||||
state,
|
||||
&new_crtcs[i]->base);
|
||||
if (!aconnector) {
|
||||
@ -4396,7 +4396,7 @@ static int dm_update_crtcs_state(
|
||||
dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
|
||||
acrtc = to_amdgpu_crtc(crtc);
|
||||
|
||||
aconnector = amdgpu_dm_find_first_crct_matching_connector(state, crtc);
|
||||
aconnector = amdgpu_dm_find_first_crtc_matching_connector(state, crtc);
|
||||
|
||||
/* TODO This hack should go away */
|
||||
if (aconnector) {
|
||||
|
@ -226,11 +226,6 @@ extern const struct amdgpu_ip_block_version dm_ip_block;
|
||||
void amdgpu_dm_update_connector_after_detect(
|
||||
struct amdgpu_dm_connector *aconnector);
|
||||
|
||||
struct amdgpu_dm_connector *amdgpu_dm_find_first_crct_matching_connector(
|
||||
struct drm_atomic_state *state,
|
||||
struct drm_crtc *crtc);
|
||||
|
||||
|
||||
struct amdgpu_framebuffer;
|
||||
struct amdgpu_display_manager;
|
||||
struct dc_validation_set;
|
||||
|
Loading…
Reference in New Issue
Block a user