diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-27 22:02:31 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:13 -0500 |
commit | f8987a1093cc7a896137e264c24e04d4048e9f95 (patch) | |
tree | fbe21050e8b5547b64505544296890d9882bca78 /arch/x86/include/asm/mach-generic | |
parent | 7ed248daa56156f2fd7175f90b62fc6397b0c7b7 (diff) |
x86, genapic: rename int_delivery_mode, et. al.
int_delivery_mode is supposed to mean 'interrupt delivery mode', but
it's quite a misnomer as 'int' we usually think of as an integer type ...
The standard naming for such attributes is 'irq' - so rename the following
fields and macros:
int_delivery_mode => irq_delivery_mode
INT_DELIVERY_MODE => IRQ_DELIVERY_MODE
int_dest_mode => irq_dest_mode
INT_DEST_MODE => IRQ_DEST_MODE
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/mach-generic')
-rw-r--r-- | arch/x86/include/asm/mach-generic/mach_apic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/mach-generic/mach_apic.h b/arch/x86/include/asm/mach-generic/mach_apic.h index cc6e9d70f06e..03492f2219ed 100644 --- a/arch/x86/include/asm/mach-generic/mach_apic.h +++ b/arch/x86/include/asm/mach-generic/mach_apic.h | |||
@@ -5,8 +5,8 @@ | |||
5 | 5 | ||
6 | #define esr_disable (apic->ESR_DISABLE) | 6 | #define esr_disable (apic->ESR_DISABLE) |
7 | #define NO_BALANCE_IRQ (apic->no_balance_irq) | 7 | #define NO_BALANCE_IRQ (apic->no_balance_irq) |
8 | #define INT_DELIVERY_MODE (apic->int_delivery_mode) | 8 | #define IRQ_DELIVERY_MODE (apic->irq_delivery_mode) |
9 | #define INT_DEST_MODE (apic->int_dest_mode) | 9 | #define IRQ_DEST_MODE (apic->irq_dest_mode) |
10 | #undef APIC_DEST_LOGICAL | 10 | #undef APIC_DEST_LOGICAL |
11 | #define APIC_DEST_LOGICAL (apic->apic_destination_logical) | 11 | #define APIC_DEST_LOGICAL (apic->apic_destination_logical) |
12 | #define TARGET_CPUS (apic->target_cpus()) | 12 | #define TARGET_CPUS (apic->target_cpus()) |