diff options
author | Dave Airlie <airlied@redhat.com> | 2010-03-30 01:34:14 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-04-06 20:24:56 -0400 |
commit | 8be48d924c307e72e3797ab5bde81b07a1ccc52d (patch) | |
tree | 7d2fec8d40b0a6e9f7bd8a5aef5bb100783ecd44 /include/drm/drm_crtc.h | |
parent | 386516744ba45d50f42c6999151cc210cb4f96e4 (diff) |
drm/kms/fb: move to using fb helper crtc grouping instead of core crtc list
This move to using the list of crtcs in the fb helper and cleans up the
whole picking code, now we store the crtc/connectors we want directly
into the modeset and we use the modeset directly to set the mode.
Fixes from James Simmons and Ben Skeggs.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index c70814b184e8..e4e34bae22cd 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -367,9 +367,6 @@ struct drm_crtc_funcs { | |||
367 | * @enabled: is this CRTC enabled? | 367 | * @enabled: is this CRTC enabled? |
368 | * @x: x position on screen | 368 | * @x: x position on screen |
369 | * @y: y position on screen | 369 | * @y: y position on screen |
370 | * @desired_mode: new desired mode | ||
371 | * @desired_x: desired x for desired_mode | ||
372 | * @desired_y: desired y for desired_mode | ||
373 | * @funcs: CRTC control functions | 370 | * @funcs: CRTC control functions |
374 | * | 371 | * |
375 | * Each CRTC may have one or more connectors associated with it. This structure | 372 | * Each CRTC may have one or more connectors associated with it. This structure |
@@ -389,8 +386,6 @@ struct drm_crtc { | |||
389 | struct drm_display_mode mode; | 386 | struct drm_display_mode mode; |
390 | 387 | ||
391 | int x, y; | 388 | int x, y; |
392 | struct drm_display_mode *desired_mode; | ||
393 | int desired_x, desired_y; | ||
394 | const struct drm_crtc_funcs *funcs; | 389 | const struct drm_crtc_funcs *funcs; |
395 | 390 | ||
396 | /* CRTC gamma size for reporting to userspace */ | 391 | /* CRTC gamma size for reporting to userspace */ |