drm/amd/display: fix typo in function name
authorAlex Deucher <alexander.deucher@amd.com>
Fri, 13 Oct 2017 18:04:26 +0000 (14:04 -0400)
committerDave Airlie <airlied@redhat.com>
Tue, 17 Oct 2017 00:42:58 +0000 (10:42 +1000)
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>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h

index f9b57697be7025d3a093b2e5ab21b61bacb8ceff..c2031eb5833f0c830f019f8362e064b3d95a90f7 100644 (file)
@@ -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) {
index 1c55a0b5cd1520c5f74b710170847319ca9e4d3a..aca061aa46436863a5fa6aa024f450f7c2f97256 100644 (file)
@@ -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;