diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 04:16:01 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 23:20:14 +0100 |
commit | dcafa4a8c95ce063cbae0a5e61632bc3c4924e66 (patch) | |
tree | eb20e4504ce7001f3f24d1f820900668ad63b2b6 /arch/x86/mach-generic/default.c | |
parent | x86, apic: remove IRQ_DEST_MODE / IRQ_DELIVERY_MODE (diff) | |
download | linux-dcafa4a8c95ce063cbae0a5e61632bc3c4924e66.tar.xz linux-dcafa4a8c95ce063cbae0a5e61632bc3c4924e66.zip |
x86, apic: remove DEFAULT_IRQ_DELIVERY_MODE and DEFAULT_IRQ_DEST_MODE
Impact: cleanup
They were only used in a single place and obscured the apic_default template.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/default.c')
-rw-r--r-- | arch/x86/mach-generic/default.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/mach-generic/default.c b/arch/x86/mach-generic/default.c index 0482106f0e19..fe97b0114a06 100644 --- a/arch/x86/mach-generic/default.c +++ b/arch/x86/mach-generic/default.c @@ -31,8 +31,9 @@ struct genapic apic_default = { .acpi_madt_oem_check = NULL, .apic_id_registered = default_apic_id_registered, - .irq_delivery_mode = DEFAULT_IRQ_DELIVERY_MODE, - .irq_dest_mode = DEFAULT_IRQ_DEST_MODE, + .irq_delivery_mode = dest_LowestPrio, + /* logical delivery broadcast to all CPUs: */ + .irq_dest_mode = 1, .target_cpus = target_cpus, .ESR_DISABLE = esr_disable, |