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:15 +0100 |
commit | 1b1bcb3ff4e4934d949574cec90679219ace5412 (patch) | |
tree | f0724e41d2bd12af5160d37dccdf2c433203abf9 /arch/x86/mach-generic | |
parent | 82daea6b0890f739be1ad4ab1c1b922b1555582e (diff) | |
download | blackbird-op-linux-1b1bcb3ff4e4934d949574cec90679219ace5412.tar.gz blackbird-op-linux-1b1bcb3ff4e4934d949574cec90679219ace5412.zip |
x86, apic: remove NUMAQ_IRQ_DELIVERY_MODE and NUMAQ_IRQ_DEST_MODE
Impact: cleanup
They were only used in a single place and obscured the apic_numaq template.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic')
-rw-r--r-- | arch/x86/mach-generic/numaq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/mach-generic/numaq.c b/arch/x86/mach-generic/numaq.c index 77ac66935fdd..6daddb6949d2 100644 --- a/arch/x86/mach-generic/numaq.c +++ b/arch/x86/mach-generic/numaq.c @@ -51,8 +51,9 @@ struct genapic apic_numaq = { .acpi_madt_oem_check = NULL, .apic_id_registered = numaq_apic_id_registered, - .irq_delivery_mode = NUMAQ_IRQ_DELIVERY_MODE, - .irq_dest_mode = NUMAQ_IRQ_DEST_MODE, + .irq_delivery_mode = dest_LowestPrio, + /* physical delivery on LOCAL quad: */ + .irq_dest_mode = 0, .target_cpus = target_cpus, .ESR_DISABLE = esr_disable, |