From f7dc972fde66d93143c3f6927087c13ae74a4828 Mon Sep 17 00:00:00 2001 From: Marc Jones Date: Sat, 31 Mar 2018 22:45:35 -0600 Subject: ioapic: extend definition name to avoid collision Change EN/DISABLED to INT_EN/DISABLED to avoid collision with other EN/DISABLE definition. Change-Id: I85b1c544d0f31340a09e18f4b36c1942ea0fa6ef Signed-off-by: Marc Jones Reviewed-on: https://review.coreboot.org/25540 Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) --- src/arch/x86/ioapic.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arch/x86/ioapic.c') diff --git a/src/arch/x86/ioapic.c b/src/arch/x86/ioapic.c index dba49c06b8..7bd52f566e 100644 --- a/src/arch/x86/ioapic.c +++ b/src/arch/x86/ioapic.c @@ -53,7 +53,7 @@ void clear_ioapic(void *ioapic_base) ioapic_interrupts = ioapic_interrupt_count(ioapic_base); - low = DISABLED; + low = INT_DISABLED; high = NONE; for (i = 0; i < ioapic_interrupts; i++) { @@ -118,7 +118,7 @@ static void load_vectors(void *ioapic_base) } /* Enable Virtual Wire Mode. */ - low = ENABLED | TRIGGER_EDGE | POLARITY_HIGH | PHYSICAL_DEST | ExtINT; + low = INT_ENABLED | TRIGGER_EDGE | POLARITY_HIGH | PHYSICAL_DEST | ExtINT; high = bsp_lapicid << (56 - 32); io_apic_write(ioapic_base, 0x10, low); @@ -131,7 +131,7 @@ static void load_vectors(void *ioapic_base) printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n", 0, high, low); - low = DISABLED; + low = INT_DISABLED; high = NONE; for (i = 1; i < ioapic_interrupts; i++) { io_apic_write(ioapic_base, i * 2 + 0x10, low); -- cgit v1.2.3