diff options
author | Maarten Lankhorst <maarten.lankhorst@linux.intel.com> | 2015-11-19 16:07:14 +0100 |
---|---|---|
committer | Maarten Lankhorst <maarten.lankhorst@linux.intel.com> | 2015-12-07 10:55:47 +0100 |
commit | ab1d3a0e5a44f5b1a8d1f811e925c8519b56fba4 (patch) | |
tree | 476f4584d2a8fea27961283e9948dcf782c77f69 /drivers/gpu/drm/i915/intel_drv.h | |
parent | a4d8a0fe4500b87817eebdb363c116922de87453 (diff) | |
download | linux-ab1d3a0e5a44f5b1a8d1f811e925c8519b56fba4.tar.gz |
drm/i915: Move disable_cxsr to the crtc_state.
intel_crtc->atomic will be removed later on, move this member
to intel_crtc_state.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1447945645-32005-2-git-send-email-maarten.lankhorst@linux.intel.com
Reviewed-by: Ander Conselvan de Oliveira <conselvan2@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/intel_drv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h index 3517cd1ce266..5247461e2675 100644 --- a/drivers/gpu/drm/i915/intel_drv.h +++ b/drivers/gpu/drm/i915/intel_drv.h @@ -367,7 +367,8 @@ struct intel_crtc_state { #define PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS (1<<0) /* unreliable sync mode.flags */ unsigned long quirks; - bool update_pipe; + bool update_pipe; /* can a fast modeset be performed? */ + bool disable_cxsr; /* Pipe source size (ie. panel fitter input size) * All planes will be positioned inside this space, @@ -533,7 +534,6 @@ struct intel_crtc_atomic_commit { /* Sleepable operations to perform before commit */ bool disable_fbc; bool disable_ips; - bool disable_cxsr; bool pre_disable_primary; bool update_wm_pre, update_wm_post; |