Skip to content

Commit

Permalink
drm/ast: Use drm_atomic_helper_commit_tail() helper
Browse files Browse the repository at this point in the history
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 <tzimmermann@suse.de>
Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240627153638.8765-9-tzimmermann@suse.de
  • Loading branch information
Thomas Zimmermann committed Jul 3, 2024
1 parent 633743e commit b84c28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/ast/ast_mode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit b84c28f

Please sign in to comment.