]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/dp_mst: Rename drm_dp_mst_atomic_check_topology_state
authorMikita Lipski <mikita.lipski@amd.com>
Fri, 13 Dec 2019 15:29:48 +0000 (10:29 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 9 Jan 2020 23:07:47 +0000 (18:07 -0500)
[why]
drm_dp_mst_atomic_check_topology_state() should be renamed
to reflect more specific type of check. Since it is verifying
payload allocation limit it should be renamed into
drm_dp_mst_atomic_check_vcpi_alloc_limit()

Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Mikita Lipski <mikita.lipski@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/drm_dp_mst_topology.c

index c7bea8a957975a24970057904da987652cc18eb8..6a7078e538e521240981aeb2baee4da8c5a17eee 100644 (file)
@@ -4810,8 +4810,8 @@ int drm_dp_mst_atomic_check_bw_limit(struct drm_dp_mst_branch *branch,
 }
 
 static inline int
-drm_dp_mst_atomic_check_topology_state(struct drm_dp_mst_topology_mgr *mgr,
-                                      struct drm_dp_mst_topology_state *mst_state)
+drm_dp_mst_atomic_check_vcpi_alloc_limit(struct drm_dp_mst_topology_mgr *mgr,
+                                        struct drm_dp_mst_topology_state *mst_state)
 {
        struct drm_dp_vcpi_allocation *vcpi;
        int avail_slots = 63, payload_count = 0;
@@ -4937,7 +4937,7 @@ int drm_dp_mst_atomic_check(struct drm_atomic_state *state)
        int i, ret = 0;
 
        for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
-               ret = drm_dp_mst_atomic_check_topology_state(mgr, mst_state);
+               ret = drm_dp_mst_atomic_check_vcpi_alloc_limit(mgr, mst_state);
                if (ret)
                        break;
                ret = drm_dp_mst_atomic_check_bw_limit(mgr->mst_primary, mst_state);