diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2017-04-29 14:00:47 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-05-03 16:18:15 +0200 |
commit | dbe81612adba70d02831ffae57dd406fa08785b8 (patch) | |
tree | abda1ed473383e69efe0ca72aa0ddd3657309430 /src/lib/edid.c | |
parent | 53485d2eabc4312f5e48429e8f9a5e51b4c961e4 (diff) |
lib/edid: Save the display ASCII string
Change-Id: Ic31af53dcb9947e2264c809ee8f80ea4f89f347d
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/19499
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/lib/edid.c')
-rw-r--r-- | src/lib/edid.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/edid.c b/src/lib/edid.c index 7b7098a0e8..405b3fdbc1 100644 --- a/src/lib/edid.c +++ b/src/lib/edid.c @@ -470,9 +470,11 @@ detailed_block(struct edid *result_edid, unsigned char *x, int in_extension, * slots, seems to be specified by SPWG: * http://www.spwg.org/ */ + strcpy(result_edid->ascii_string, extract_string(x + 5, + &c->has_valid_string_termination, + EDID_ASCII_STRING_LENGTH)); printk(BIOS_SPEW, "ASCII string: %s\n", - extract_string(x + 5, - &c->has_valid_string_termination, 13)); + result_edid->ascii_string); return 1; case 0xFF: printk(BIOS_SPEW, "Serial number: %s\n", |