[coreboot-gerrit] Patch set updated for coreboot: intel/gma: Return success for Intel int15 VGA set panel type hook

Paul Menzel (paulepanter@users.sourceforge.net) gerrit at coreboot.org
Fri Oct 30 08:40:00 CET 2015


Paul Menzel (paulepanter at users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12255

-gerrit

commit aa4edf28147a0383856cf6f95e143492017431b4
Author: Konstantin Aladyshev <aladyshev at nicevt.ru>
Date:   Sat Jan 24 21:02:19 2015 +0400

    intel/gma: Return success for Intel int15 VGA set panel type hook
    
    One of the interrupts in intel_vga_int15_handler lacks
    positive return status. Write correct status to avoid
    error messages in log.
    
    TEST=With this change `int15 call returned error` is not shown anymore
         on a custom board with Intel Atom CPU, i945GME northbridge and
         i82801gx southbridge.
    
    Change-Id: I740b2df9bd6a7d261d89bef74b924edbb64354aa
    Signed-off-by: Konstantin Aladyshev <aladyshev at nicevt.ru>
---
 src/drivers/intel/gma/int15.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/drivers/intel/gma/int15.c b/src/drivers/intel/gma/int15.c
index bf43af8..92c5cf9 100644
--- a/src/drivers/intel/gma/int15.c
+++ b/src/drivers/intel/gma/int15.c
@@ -64,6 +64,7 @@ int intel_vga_int15_handler(void)
 		X86_AX = 0x005f; // Success
 		X86_CL = panel_type;
 		printk(BIOS_DEBUG, "DISPLAY=%x\n", X86_CL);
+		res = 1;
 		break;
 	case 0x5f51:
 		/*



More information about the coreboot-gerrit mailing list