From 6673e8ec6aa2eb558116a8ca000c3151ecb9eda2 Mon Sep 17 00:00:00 2001 From: Hung-Te Lin Date: Tue, 13 Aug 2019 12:06:27 +0800 Subject: lib: edid: Move manufacturer name from private extra to public info When debugging usually we want to print out a full identifier for panel, that should be manufacturer and part number. Previously the edid only contains ascii_string (which is usually the part number) but we should export manufacturer name as well. Change-Id: I0020fdd5b9f9331b25825876e0de4dc7e26b0464 Signed-off-by: Hung-Te Lin Reviewed-on: https://review.coreboot.org/c/coreboot/+/34852 Tested-by: build bot (Jenkins) Reviewed-by: Julius Werner --- src/include/edid.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include') diff --git a/src/include/edid.h b/src/include/edid.h index e5f7d98926..a97b99b579 100644 --- a/src/include/edid.h +++ b/src/include/edid.h @@ -95,6 +95,7 @@ struct edid { int hdmi_monitor_detected; char ascii_string[EDID_ASCII_STRING_LENGTH + 1]; + char manufacturer_name[3 + 1]; }; enum edid_status { -- cgit v1.2.3