drm/i915: Always use intel_get_crtc_for_pipe()
authorVille Syrjälä <[email protected]>
Mon, 31 Oct 2016 20:37:10 +0000 (22:37 +0200)
committerVille Syrjälä <[email protected]>
Tue, 1 Nov 2016 14:40:38 +0000 (16:40 +0200)
commit98187836fc75b7a003db101e19cfa8685da78905
tree88e9e4a98e32d143bddee511e025b07dbcbf09d8
parentb91eb5cce65047eced9d13e8e15b46dced0c3c53
drm/i915: Always use intel_get_crtc_for_pipe()

Replace the open coded dev_priv->pipe_to_crtc_mapping[] usage with
intel_get_crtc_for_pipe().

Mostly done with coccinelle, with a few manual tweaks

@@
expression E1, E2;
@@
(
- E1->pipe_to_crtc_mapping[E2]
+ intel_get_crtc_for_pipe(E1, E2)
|
- E1->plane_to_crtc_mapping[E2]
+ intel_get_crtc_for_plane(E1, E2)
)

Signed-off-by: Ville Syrjälä <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
Reviewed-by: Chris Wilson <[email protected]>
drivers/gpu/drm/i915/i915_debugfs.c
drivers/gpu/drm/i915/i915_irq.c
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_fifo_underrun.c
drivers/gpu/drm/i915/intel_pm.c