aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-11 09:44:54 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-28 17:19:54 +0200
commit78d0cab36d835c988ef6a75e0a47fb6349ca1300 (patch)
tree319401acd46f9a7502319a93b255f6614f5dde7a /src/arch
parentb166628c302504f0223045b618c6c05c53a35e61 (diff)
IOAPIC: Fix missing stdint include
Change-Id: Ib26f48d3ac66788246834cdc25d97910cd79fe98 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/6264 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/include/arch/ioapic.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/include/arch/ioapic.h b/src/arch/x86/include/arch/ioapic.h
index 7ff47bb018..bb0a35e285 100644
--- a/src/arch/x86/include/arch/ioapic.h
+++ b/src/arch/x86/include/arch/ioapic.h
@@ -24,6 +24,9 @@
#define IO_APIC_INTERRUPTS 24
#ifndef __ACPI__
+
+#include <stdint.h>
+
#define ALL (0xff << 24)
#define NONE (0)
#define DISABLED (1 << 16)