diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-05-14 11:03:04 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-25 04:55:12 -0400 |
commit | 5f8951487ddbacbc949e9ffae574f94791f9b4dd (patch) | |
tree | c400f3621799d50c3ef1c4df69d18bac66eb2549 /arch/x86 | |
parent | 11113f84c72bd832dc4e76122e613b0e623e2346 (diff) |
x86: make mp_ioapic_routing definition local
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index b2ad09c4c6ae..f75c2030f4b5 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -852,7 +852,12 @@ static int __init acpi_parse_madt_lapic_entries(void) | |||
852 | extern int es7000_plat; | 852 | extern int es7000_plat; |
853 | #endif | 853 | #endif |
854 | 854 | ||
855 | static struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS]; | 855 | static struct { |
856 | int apic_id; | ||
857 | int gsi_base; | ||
858 | int gsi_end; | ||
859 | DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1); | ||
860 | } mp_ioapic_routing[MAX_IO_APICS]; | ||
856 | 861 | ||
857 | static int mp_find_ioapic(int gsi) | 862 | static int mp_find_ioapic(int gsi) |
858 | { | 863 | { |