[coreboot-gerrit] New patch to review for coreboot: tegra124: Actually align the framebuffer's bytes-per-line to 32

Paul Kocialkowski (contact@paulk.fr) gerrit at coreboot.org
Sat May 14 15:27:49 CEST 2016


Paul Kocialkowski (contact at paulk.fr) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14816

-gerrit

commit 6e25956c8d58b5aba5ce6ea2446496970cf8d580
Author: Paul Kocialkowski <contact at paulk.fr>
Date:   Sat May 14 15:25:51 2016 +0200

    tegra124: Actually align the framebuffer's bytes-per-line to 32
    
    The previous change with that intent aligned the framebuffer's
    bytes-per-line to 64 instead of 32.
    
    Change-Id: I88bba2ff355a51d42cab6a869ec1e9c534160b9c
    Signed-off-by: Paul Kocialkowski <contact at paulk.fr>
---
 src/soc/nvidia/tegra124/display.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/soc/nvidia/tegra124/display.c b/src/soc/nvidia/tegra124/display.c
index 0fc15cb..9ec34d4 100644
--- a/src/soc/nvidia/tegra124/display.c
+++ b/src/soc/nvidia/tegra124/display.c
@@ -334,6 +334,6 @@ void display_startup(device_t dev)
 	edid.mode.va = config->yres;
 	edid.mode.ha = config->xres;
 	edid_set_framebuffer_bits_per_pixel(&edid,
-		config->framebuffer_bits_per_pixel, 64);
+		config->framebuffer_bits_per_pixel, 32);
 	set_vbe_mode_info_valid(&edid, (uintptr_t)(framebuffer_base_mb*MiB));
 }



More information about the coreboot-gerrit mailing list