mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
drm/i915/plane: rename intel_atomic_add_affected_planes() to intel_plane_add_affected()
Rename to follow filename based naming. Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> Link: https://lore.kernel.org/r/c37bc557f831090c934b76d03485823bd45ebba8.1750147992.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
b603034fb1
commit
be8f5f88ef
|
|
@ -5479,7 +5479,7 @@ static int intel_modeset_pipe(struct intel_atomic_state *state,
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = intel_atomic_add_affected_planes(state, crtc);
|
||||
ret = intel_plane_add_affected(state, crtc);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
|
@ -6195,7 +6195,7 @@ static int intel_joiner_add_affected_crtcs(struct intel_atomic_state *state)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = intel_atomic_add_affected_planes(state, crtc);
|
||||
ret = intel_plane_add_affected(state, crtc);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1434,8 +1434,8 @@ static int intel_crtc_add_planes_to_state(struct intel_atomic_state *state,
|
|||
return 0;
|
||||
}
|
||||
|
||||
int intel_atomic_add_affected_planes(struct intel_atomic_state *state,
|
||||
struct intel_crtc *crtc)
|
||||
int intel_plane_add_affected(struct intel_atomic_state *state,
|
||||
struct intel_crtc *crtc)
|
||||
{
|
||||
const struct intel_crtc_state *old_crtc_state =
|
||||
intel_atomic_get_old_crtc_state(state, crtc);
|
||||
|
|
|
|||
|
|
@ -83,8 +83,8 @@ void intel_plane_helper_add(struct intel_plane *plane);
|
|||
bool intel_plane_needs_physical(struct intel_plane *plane);
|
||||
void intel_plane_init_cursor_vblank_work(struct intel_plane_state *old_plane_state,
|
||||
struct intel_plane_state *new_plane_state);
|
||||
int intel_atomic_add_affected_planes(struct intel_atomic_state *state,
|
||||
struct intel_crtc *crtc);
|
||||
int intel_plane_add_affected(struct intel_atomic_state *state,
|
||||
struct intel_crtc *crtc);
|
||||
int intel_plane_atomic_check(struct intel_atomic_state *state);
|
||||
|
||||
u32 intel_plane_ggtt_offset(const struct intel_plane_state *plane_state);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user