From e956255509b3b614b2c879b645cbc155daf46157 Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Wed, 19 Dec 2018 14:42:00 +0100 Subject: 3rdparty/libgfxinit: Update submodule pointer Updates to current master. This includes: - A fix for textmode scaling on G45 - Refactor things to rely less on inline proving - Increased width of modeline fields to 32 bits Change-Id: Iab2915b747f6e4fa4e78eb28fea29bb3a9b3b687 Signed-off-by: Arthur Heymans Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/30311 Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- src/drivers/intel/gma/hires_fb/gma.adb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/drivers/intel/gma/hires_fb') diff --git a/src/drivers/intel/gma/hires_fb/gma.adb b/src/drivers/intel/gma/hires_fb/gma.adb index ca0f708479..bd141329bd 100644 --- a/src/drivers/intel/gma/hires_fb/gma.adb +++ b/src/drivers/intel/gma/hires_fb/gma.adb @@ -60,8 +60,8 @@ is success : boolean; - min_h : pos16 := pos16'last; - min_v : pos16 := pos16'last; + min_h : pos32 := pos32'last; + min_v : pos32 := pos32'last; begin lightup_ok := 0; @@ -75,8 +75,8 @@ is for i in Pipe_Index loop exit when configs (i).Port = Disabled; - min_h := pos16'min (min_h, configs (i).Mode.H_Visible); - min_v := pos16'min (min_v, configs (i).Mode.V_Visible); + min_h := pos32'min (min_h, configs (i).Mode.H_Visible); + min_v := pos32'min (min_v, configs (i).Mode.V_Visible); end loop; fb := configs (Primary).Framebuffer; -- cgit v1.2.3