diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2011-04-29 02:04:31 +0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-05-14 05:12:50 +0400 |
commit | 6067aaeadb5b3df26f27ac827256b1ef01e674f5 (patch) | |
tree | bbc2fd9a7009e43beaa17f3fcab6e2cfe85339d6 /drivers/gpu/drm/i915/i915_drv.h | |
parent | 90711d50d0bc3dde0c2bd214abda8cdaf62f7b2e (diff) | |
download | linux-6067aaeadb5b3df26f27ac827256b1ef01e674f5.tar.xz |
drm/i915: split clock gating init into per-chipset functions
This helps contain the mess to init_display() 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 0cf65a4350c0..581395e581eb 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -209,12 +209,12 @@ struct drm_i915_display_funcs { int x, int y, struct drm_framebuffer *old_fb); void (*fdi_link_train)(struct drm_crtc *crtc); + void (*init_clock_gating)(struct drm_device *dev); /* clock updates for mode set */ /* cursor updates */ /* render clock increase/decrease */ /* display clock increase/decrease */ /* pll clock increase/decrease */ - /* clock gating init */ }; struct intel_device_info { |