drm/rockchip: drv: rename drm_atomic_helper_connector_commit()

drm_atomic_helper_connector_commit() is rockchip private function, so
rename to rockchip_drm_atomic_helper_connector_commit() is more reasonable.

the function is introduced by the following commit:
commit: 88ea93aeb0 ("drm/rockchip: Introduce connector commit")

Signed-off-by: Sandy Huang <hjc@rock-chips.com>
Change-Id: I7d118495024c699529e872e036930a9d3ba70610
This commit is contained in:
Sandy Huang
2024-01-12 17:21:18 +08:00
parent 19ab80fe27
commit 289b59b0e9

View File

@@ -214,8 +214,9 @@ static int rockchip_drm_aclk_adjust(struct drm_device *dev,
return 0;
}
static void drm_atomic_helper_connector_commit(struct drm_device *dev,
struct drm_atomic_state *old_state)
static void
rockchip_drm_atomic_helper_connector_commit(struct drm_device *dev,
struct drm_atomic_state *old_state)
{
struct drm_connector *connector;
struct drm_connector_state *new_conn_state;
@@ -264,7 +265,7 @@ static void rockchip_drm_atomic_helper_commit_tail_rpm(struct drm_atomic_state *
drm_atomic_helper_fake_vblank(old_state);
drm_atomic_helper_connector_commit(dev, old_state);
rockchip_drm_atomic_helper_connector_commit(dev, old_state);
drm_atomic_helper_commit_hw_done(old_state);