aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_drv.h
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2015-01-20 07:51:52 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-01-27 03:51:04 -0500
commit5724dbd1678e2f573b13f0688277941fad66cb88 (patch)
tree4135398c6d43fa484478ed05af82920cd8fea7e7 /drivers/gpu/drm/i915/i915_drv.h
parentbc8d7dffacb15bef89e21227c42e23d3ffc77b7b (diff)
drm/i915: Rename plane_config to initial_plane_config
This vfunc and related structure are only used for fast boot, so let's rename them to not take them as general purpose ones. v2: Fix conflicts caused by the introduction of struct intel_crtc_state Reviewed-By: Tvrtko Ursulin <tvrtko.ursulin@intel.com> (v1) Suggested-by: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r--drivers/gpu/drm/i915/i915_drv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index dd1cdc81b150..56fd2b80f8af 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -504,7 +504,7 @@ struct drm_i915_error_state {
504struct intel_connector; 504struct intel_connector;
505struct intel_encoder; 505struct intel_encoder;
506struct intel_crtc_state; 506struct intel_crtc_state;
507struct intel_plane_config; 507struct intel_initial_plane_config;
508struct intel_crtc; 508struct intel_crtc;
509struct intel_limit; 509struct intel_limit;
510struct dpll; 510struct dpll;
@@ -543,8 +543,8 @@ struct drm_i915_display_funcs {
543 * fills out the pipe-config with the hw state. */ 543 * fills out the pipe-config with the hw state. */
544 bool (*get_pipe_config)(struct intel_crtc *, 544 bool (*get_pipe_config)(struct intel_crtc *,
545 struct intel_crtc_state *); 545 struct intel_crtc_state *);
546 void (*get_plane_config)(struct intel_crtc *, 546 void (*get_initial_plane_config)(struct intel_crtc *,
547 struct intel_plane_config *); 547 struct intel_initial_plane_config *);
548 int (*crtc_compute_clock)(struct intel_crtc *crtc, 548 int (*crtc_compute_clock)(struct intel_crtc *crtc,
549 struct intel_crtc_state *crtc_state); 549 struct intel_crtc_state *crtc_state);
550 void (*crtc_enable)(struct drm_crtc *crtc); 550 void (*crtc_enable)(struct drm_crtc *crtc);