diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2011-04-28 14:27:04 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-05-13 17:02:19 -0700 |
commit | 674cf967614f31826f45d30c8f8f8e050cc3eef2 (patch) | |
tree | fbec4f1f783922c2bda98e87935a311eaf8edbf8 /drivers/gpu/drm/i915/i915_drv.h | |
parent | 8eb572942ca02890f590d9251233038e27dd3842 (diff) | |
download | lwn-674cf967614f31826f45d30c8f8f8e050cc3eef2.tar.gz lwn-674cf967614f31826f45d30c8f8f8e050cc3eef2.zip |
drm/i915: make FDI training a display function
Rather than branching in ironlake_pch_enable, add a new train_fdi
function to the display function pointer struct and use it instead.
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index e9d824326a03..4dbf4dfafb59 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -208,7 +208,7 @@ struct drm_i915_display_funcs { struct drm_display_mode *adjusted_mode, int x, int y, struct drm_framebuffer *old_fb); - + void (*fdi_link_train)(struct drm_crtc *crtc); /* clock updates for mode set */ /* cursor updates */ /* render clock increase/decrease */ |