diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2011-08-03 16:22:54 (GMT) |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-04 00:43:10 (GMT) |
commit | ebec9a7bf11f843b0602b06c402f04bf4213b35a (patch) | |
tree | dc99677c052f3a24bf55a87f9b88067f3de70102 /include/drm | |
parent | 4e20fa65a3ea789510eed1a15deb9e8aab2b8202 (diff) | |
download | linux-ebec9a7bf11f843b0602b06c402f04bf4213b35a.tar.xz |
drm: track CEA version number if present
Drivers need to know the CEA version number in addition to other display
info (like whether the display is an HDMI sink) before enabling certain
features. So track the CEA version number in the display info
structure.
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 33d12f8..d515bc8 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -205,6 +205,8 @@ struct drm_display_info { enum subpixel_order subpixel_order; u32 color_formats; + u8 cea_rev; + char *raw_edid; /* if any */ }; |