summaryrefslogtreecommitdiff
path: root/src/drivers/generic
diff options
context:
space:
mode:
authorMarc Jones <marc.jones@scarletltd.com>2018-03-31 22:45:35 -0600
committerPatrick Georgi <pgeorgi@google.com>2018-04-09 09:29:51 +0000
commitf7dc972fde66d93143c3f6927087c13ae74a4828 (patch)
tree31f81790434b4d17fbc5d15f5a8e1edd6cf9fd29 /src/drivers/generic
parent4764be33e04aacc6f22645249046ed0524aaa529 (diff)
downloadcoreboot-f7dc972fde66d93143c3f6927087c13ae74a4828.tar.xz
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 <marc.jones@scarletltd.com> Reviewed-on: https://review.coreboot.org/25540 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/generic')
-rw-r--r--src/drivers/generic/ioapic/ioapic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/generic/ioapic/ioapic.c b/src/drivers/generic/ioapic/ioapic.c
index 44f1b02424..271e98c2e3 100644
--- a/src/drivers/generic/ioapic/ioapic.c
+++ b/src/drivers/generic/ioapic/ioapic.c
@@ -61,7 +61,7 @@ static void ioapic_init(struct device *dev)
if (config->enable_virtual_wire) {
/* 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);
@@ -75,7 +75,7 @@ static void ioapic_init(struct device *dev)
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++) {