[coreboot-gerrit] New patch to review for coreboot: db87a7c pit: Add missing elements to the edid data structure

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Dec 3 22:56:40 CET 2013


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4389

-gerrit

commit db87a7c54754739cd57b99c60079669420247deb
Author: Gabe Black <gabeblack at google.com>
Date:   Thu Jul 25 09:23:00 2013 -0700

    pit: Add missing elements to the edid data structure
    
    When the edid data structure changed a while ago, it caused hangs on snow
    which were fixed by adding those missing members. Unfortunately we didn't
    realize that pit needed the same fix.
    
    Change-Id: I81780b8135b99b2e24af723e703b9befff7b5ef0
    Signed-off-by: Gabe Black <gabeblack at google.com>
    Reviewed-on: https://gerrit.chromium.org/gerrit/63646
    Reviewed-by: David Hendricks <dhendrix at chromium.org>
    Tested-by: Gabe Black <gabeblack at chromium.org>
    Reviewed-by: Ronald G. Minnich <rminnich at chromium.org>
    Commit-Queue: Gabe Black <gabeblack at chromium.org>
---
 src/mainboard/google/pit/mainboard.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/mainboard/google/pit/mainboard.c b/src/mainboard/google/pit/mainboard.c
index 3f04eec..2870467 100644
--- a/src/mainboard/google/pit/mainboard.c
+++ b/src/mainboard/google/pit/mainboard.c
@@ -49,6 +49,9 @@ static struct edid edid = {
 	.ha = 1366,
 	.va = 768,
 	.bpp = 16,
+	.x_resolution = 1366,
+	.y_resolution = 768,
+	.bytes_per_line = 2 * 1366
 };
 
 static const struct parade_write parade_writes[] = {



More information about the coreboot-gerrit mailing list