diff options
author | Simon Glass | 2016-01-21 19:45:00 -0700 |
---|---|---|
committer | Simon Glass | 2016-01-21 20:42:36 -0700 |
commit | 2dcf143398ad89ac960e02c7149521ae420db43b (patch) | |
tree | 7ab1e2601c2d3322fc2ba19700ba0a0d5c32e6fd /include/edid.h | |
parent | cd9c2070ea0712bd69e18236e8b52232fd27b02e (diff) |
dm: video: Repurpose the 'displayport' uclass to 'display'
The current DisplayPort uclass is too specific. The operations it provides
are shared with other types of output devices, such as HDMI and LVDS LCD
displays.
Generalise the uclass so that it can be used with these devices as well.
Adjust the uclass to handle the EDID reading and conversion to
display_timing internally.
Also update nyan-big which is affected by this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/edid.h')
-rw-r--r-- | include/edid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/edid.h b/include/edid.h index 88b4b7d8542..8b022fa98af 100644 --- a/include/edid.h +++ b/include/edid.h @@ -17,6 +17,7 @@ /* Size of the EDID data */ #define EDID_SIZE 128 +#define EDID_EXT_SIZE 256 #define GET_BIT(_x, _pos) \ (((_x) >> (_pos)) & 1) |