aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Molnar2009-01-27 17:14:11 -0600
committerIngo Molnar2009-01-28 16:20:06 -0600
commitc8d46cf06dc2e3a8f57a350eb9f9b19fd7f2ffe5 (patch)
treefe5ceac244165e5726f310027588cf6e1b6e60e6 /arch/x86/mach-generic/es7000.c
parent6781d948cc05b02df915650f2eb49550a1631df9 (diff)
downloadkernel-common-c8d46cf06dc2e3a8f57a350eb9f9b19fd7f2ffe5.tar.gz
kernel-common-c8d46cf06dc2e3a8f57a350eb9f9b19fd7f2ffe5.tar.xz
kernel-common-c8d46cf06dc2e3a8f57a350eb9f9b19fd7f2ffe5.zip
x86: rename 'genapic' to 'apic'
Rename genapic-> to apic-> references because in a future chagne we'll open-code all the indirect calls (instead of obscuring them via macros), so we want this reference to be as short as possible. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/es7000.c')
-rw-r--r--arch/x86/mach-generic/es7000.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c
index c2ded144802..2f4f4a6e39b 100644
--- a/arch/x86/mach-generic/es7000.c
+++ b/arch/x86/mach-generic/es7000.c
@@ -20,14 +20,14 @@
20 20
21void __init es7000_update_genapic_to_cluster(void) 21void __init es7000_update_genapic_to_cluster(void)
22{ 22{
23 genapic->target_cpus = target_cpus_cluster; 23 apic->target_cpus = target_cpus_cluster;
24 genapic->int_delivery_mode = INT_DELIVERY_MODE_CLUSTER; 24 apic->int_delivery_mode = INT_DELIVERY_MODE_CLUSTER;
25 genapic->int_dest_mode = INT_DEST_MODE_CLUSTER; 25 apic->int_dest_mode = INT_DEST_MODE_CLUSTER;
26 genapic->no_balance_irq = NO_BALANCE_IRQ_CLUSTER; 26 apic->no_balance_irq = NO_BALANCE_IRQ_CLUSTER;
27 27
28 genapic->init_apic_ldr = init_apic_ldr_cluster; 28 apic->init_apic_ldr = init_apic_ldr_cluster;
29 29
30 genapic->cpu_mask_to_apicid = cpu_mask_to_apicid_cluster; 30 apic->cpu_mask_to_apicid = cpu_mask_to_apicid_cluster;
31} 31}
32 32
33static int probe_es7000(void) 33static int probe_es7000(void)