diff options
author | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2011-10-14 23:17:41 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-12-16 17:49:55 +0100 |
commit | 03d00ac53f9bcde06ff7e33d6676083c18d569a4 (patch) | |
tree | f8decda1787b6143fdffe115edcb6af9b9b442ba | |
parent | drm/i915: set the right SDVO transcoder for CPT (diff) | |
download | linux-03d00ac53f9bcde06ff7e33d6676083c18d569a4.tar.xz linux-03d00ac53f9bcde06ff7e33d6676083c18d569a4.zip |
drm/i915: add PCH info to i915_capabilities
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | drivers/gpu/drm/i915/i915_debugfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index d09a6e02dc95..004b048c5192 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -62,6 +62,7 @@ static int i915_capabilities(struct seq_file *m, void *data) const struct intel_device_info *info = INTEL_INFO(dev); seq_printf(m, "gen: %d\n", info->gen); + seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev)); #define B(x) seq_printf(m, #x ": %s\n", yesno(info->x)) B(is_mobile); B(is_i85x); |