From: Thomas Zimmermann Date: Thu, 27 Jun 2024 15:27:53 +0000 (+0200) Subject: drm/ast: Use drm_atomic_helper_commit_tail() helper X-Git-Tag: io_uring-6.11-20240722~49^2~5^2~8 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b84c28f33d35361282d27ac304c888dc1ad38a15;p=linux-block.git drm/ast: Use drm_atomic_helper_commit_tail() helper Ast has no special requirements for runtime power management. So replace drm_atomic_helper_commit_tail_rpm() with the regular helper drm_atomic_helper_commit_tail(). Signed-off-by: Thomas Zimmermann Reviewed-by: Jocelyn Falempe Link: https://patchwork.freedesktop.org/patch/msgid/20240627153638.8765-9-tzimmermann@suse.de --- diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c index d130c96edf35..dc8f639e82fd 100644 --- a/drivers/gpu/drm/ast/ast_mode.c +++ b/drivers/gpu/drm/ast/ast_mode.c @@ -1865,7 +1865,7 @@ static void ast_mode_config_helper_atomic_commit_tail(struct drm_atomic_state *s * the I/O-register lock. Released in atomic_flush(). */ mutex_lock(&ast->modeset_lock); - drm_atomic_helper_commit_tail_rpm(state); + drm_atomic_helper_commit_tail(state); mutex_unlock(&ast->modeset_lock); }