Nico Huber ([email protected]) just uploaded a new patch set to gerrit, 
which you can find at http://review.coreboot.org/1853

-gerrit

commit 5d2b1750f92cdf8c4425f9dc8f6ee53e1ed6ce19
Author: Nico Huber <[email protected]>
Date:   Tue Nov 13 14:51:16 2012 +0100

    Make YABEL's version of mainboard_interrupt_handlers() usable
    
    YABEL's version of mainboard_interrupt_handlers() was hidden behind an
    inline stub. This fixes it.
    
    Change-Id: Ie53424a8ce074e93a720c0ef94cb39994cacd023
    Signed-off-by: Nico Huber <[email protected]>
---
 src/arch/x86/include/arch/interrupt.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/arch/x86/include/arch/interrupt.h 
b/src/arch/x86/include/arch/interrupt.h
index 83821f4..ad9493d 100644
--- a/src/arch/x86/include/arch/interrupt.h
+++ b/src/arch/x86/include/arch/interrupt.h
@@ -24,6 +24,8 @@
 /* setup interrupt handlers for mainboard */
 #if CONFIG_PCI_OPTION_ROM_RUN_REALMODE
 extern void mainboard_interrupt_handlers(int intXX, void *intXX_func);
+#elif CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#include <devices/oprom/yabel/biosemu.h>
 #else
 static inline void mainboard_interrupt_handlers(int intXX, void *intXX_func) { 
}
 #endif

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to