diff options
Diffstat (limited to 'src/include/edid.h')
-rw-r--r-- | src/include/edid.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/edid.h b/src/include/edid.h index 100dbe9ba3..1eb8c4d306 100644 --- a/src/include/edid.h +++ b/src/include/edid.h @@ -53,6 +53,8 @@ struct edid_mode { * unsigned int. We can move more into into this struct as needed. */ +#define EDID_ASCII_STRING_LENGTH 13 + struct edid { /* These next three things used to all be called bpp. * Merriment ensued. The identifier @@ -89,6 +91,7 @@ struct edid { u32 bytes_per_line; int hdmi_monitor_detected; + char ascii_string[EDID_ASCII_STRING_LENGTH + 1]; }; enum edid_status { |