diff options
author | Keith Packard <keithp@keithp.com> | 2009-05-06 11:48:58 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-06-18 15:54:06 -0700 |
commit | c31c4ba3437d98efa19710e30d694a1cfdf87aa5 (patch) | |
tree | 043b40a59404868cc2eee5db44599c0539f110ee /drivers/gpu/drm/i915/intel_drv.h | |
parent | 308cd3a2e505b0d15f2852e8db5d648b60a6313b (diff) | |
download | blackbird-op-linux-c31c4ba3437d98efa19710e30d694a1cfdf87aa5.tar.gz blackbird-op-linux-c31c4ba3437d98efa19710e30d694a1cfdf87aa5.zip |
drm/i915: add per-output hotplug callback for KMS
This allows each output to deal with plug/unplug events as needed.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/intel_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h index d89a2fed35af..c5858792c806 100644 --- a/drivers/gpu/drm/i915/intel_drv.h +++ b/drivers/gpu/drm/i915/intel_drv.h @@ -83,6 +83,7 @@ struct intel_output { bool load_detect_temp; bool needs_tv_clock; void *dev_priv; + void (*hot_plug)(struct intel_output *); }; struct intel_crtc { |