diff options
author | Henrik Kretzschmar <henne@nachtwindheim.de> | 2011-02-22 09:38:06 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-02-23 05:38:46 -0500 |
commit | 7d0f1926131cf79aa5998d463bf1582156e7b41e (patch) | |
tree | a0ffca6d8e940aa54cf355937d8701b9e9a8ad97 /arch/x86/kernel/apic | |
parent | 7167d08e780a722fa79ea414fc4e72bc00751392 (diff) |
x86: Add dummy functions for compiling without IOAPIC
This patch adds IOAPIC dummy functions for compilation
with local APIC, but without IOAPIC.
The local variable ioapic_entries in enable_IR_x2apic()
does not need initialization anymore, since the dummy
returns NULL.
Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
LKML-Reference: <1298385487-4708-4-git-send-email-henne@nachtwindheim.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic')
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 96e68099b06e..f0e079823c43 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
@@ -1449,7 +1449,7 @@ int __init enable_IR(void) | |||
1449 | void __init enable_IR_x2apic(void) | 1449 | void __init enable_IR_x2apic(void) |
1450 | { | 1450 | { |
1451 | unsigned long flags; | 1451 | unsigned long flags; |
1452 | struct IO_APIC_route_entry **ioapic_entries = NULL; | 1452 | struct IO_APIC_route_entry **ioapic_entries; |
1453 | int ret, x2apic_enabled = 0; | 1453 | int ret, x2apic_enabled = 0; |
1454 | int dmar_table_init_ret; | 1454 | int dmar_table_init_ret; |
1455 | 1455 | ||