Author: uwe Date: Thu Oct 28 16:22:20 2010 New Revision: 5999 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5999
Log: Fix broken build due to missing #if CONFIG_IOAPIC.
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de Acked-by: Uwe Hermann uwe@hermann-uwe.de
Modified: trunk/src/southbridge/intel/i82371eb/i82371eb_isa.c
Modified: trunk/src/southbridge/intel/i82371eb/i82371eb_isa.c ============================================================================== --- trunk/src/southbridge/intel/i82371eb/i82371eb_isa.c Thu Oct 28 10:19:22 2010 (r5998) +++ trunk/src/southbridge/intel/i82371eb/i82371eb_isa.c Thu Oct 28 16:22:20 2010 (r5999) @@ -28,6 +28,7 @@ #include <arch/ioapic.h> #include "i82371eb.h"
+#if CONFIG_IOAPIC static void enable_intel_82093aa_ioapic(void) { u16 reg16; @@ -56,6 +57,7 @@ if (reg32 != ioapic_id) die("IOAPIC error!\n"); } +#endif
static void isa_init(struct device *dev) {