Alexandru Gagniuc (mr.nuke.me@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6985
-gerrit
commit 118513ea44e971a3dde7363a2bd04af90d0ac21c Author: Paul Menzel paulepanter@users.sourceforge.net Date: Sat Sep 27 10:02:15 2014 +0200
packardbell/ms2290: Fix build with native graphics init
Fix native VGA init build issues introduced by commit * a2a906e4 Consolidate intel vga int15 hooks
Include the header file `drivers/intel/gma/int15.h` unconditionally, so that the prototype of `install_intel_vga_int15_handler()` is always to be found.
Change-Id: Ie64f9510f49fe9d67b14ce27d7e789d6007ca0a6 Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- src/mainboard/packardbell/ms2290/mainboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/packardbell/ms2290/mainboard.c b/src/mainboard/packardbell/ms2290/mainboard.c index c14e9b7..9e64f5c 100644 --- a/src/mainboard/packardbell/ms2290/mainboard.c +++ b/src/mainboard/packardbell/ms2290/mainboard.c @@ -35,8 +35,8 @@
#include <pc80/mc146818rtc.h> #include <arch/x86/include/arch/acpigen.h> -#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE #include <drivers/intel/gma/int15.h> +#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE #include <arch/interrupt.h> #endif #include <pc80/keyboard.h>