diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-08-04 07:24:42 -0400 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-08-09 14:24:30 -0400 |
commit | 87f8ebf309b2df69b57be96bf36d2d61009fd296 (patch) | |
tree | 165a58616aa4e6dcf1a825a69cb81d8ae884616f /drivers/gpu/drm/i915/intel_drv.h | |
parent | 6146b3d61925116e3fecce36c2fd873665bd6614 (diff) |
drm/i915: Disable the cursor for DPMS_OFF
The comments have long desired that we should switch off the cursor
along with the display plane, make it so.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/intel_drv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h index 1075d4386b87..a44b8cb4d2cc 100644 --- a/drivers/gpu/drm/i915/intel_drv.h +++ b/drivers/gpu/drm/i915/intel_drv.h | |||
@@ -154,7 +154,7 @@ struct intel_crtc { | |||
154 | uint32_t cursor_addr; | 154 | uint32_t cursor_addr; |
155 | int16_t cursor_x, cursor_y; | 155 | int16_t cursor_x, cursor_y; |
156 | int16_t cursor_width, cursor_height; | 156 | int16_t cursor_width, cursor_height; |
157 | bool cursor_visble; | 157 | bool cursor_visble, cursor_on; |
158 | }; | 158 | }; |
159 | 159 | ||
160 | #define to_intel_crtc(x) container_of(x, struct intel_crtc, base) | 160 | #define to_intel_crtc(x) container_of(x, struct intel_crtc, base) |