Commit b84c28f3 authored by Thomas Zimmermann's avatar Thomas Zimmermann

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: default avatarThomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: default avatarJocelyn Falempe <jfalempe@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240627153638.8765-9-tzimmermann@suse.de
parent 633743ed
...@@ -1865,7 +1865,7 @@ static void ast_mode_config_helper_atomic_commit_tail(struct drm_atomic_state *s ...@@ -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(). * the I/O-register lock. Released in atomic_flush().
*/ */
mutex_lock(&ast->modeset_lock); mutex_lock(&ast->modeset_lock);
drm_atomic_helper_commit_tail_rpm(state); drm_atomic_helper_commit_tail(state);
mutex_unlock(&ast->modeset_lock); mutex_unlock(&ast->modeset_lock);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment