diff options
author | Jaswinder Singh Rajput <jaswinder@infradead.org> | 2009-01-04 11:28:25 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-05 08:08:33 -0500 |
commit | c4563826b72b0d12500260093179a660e79bf412 (patch) | |
tree | ec5042aa58a0321fce52d1f69659da17db365929 /arch/x86/kernel/mpparse.c | |
parent | e253b396b145311477b23c176e868e5af6f79174 (diff) |
x86: rename all fields of mpc_cpu mpc_X to X
Impact: cleanup, solve 80 columns wrap problems
It would be cleaner to rename all the mpc->mpc_X fields to
mpc->X - that alone would give 4 characters per usage site.
(we already know that it's an 'mpc' entity -
no need to duplicate that in the field too)
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/mpparse.c')
-rw-r--r-- | arch/x86/kernel/mpparse.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index a804f107db8a..a8b9ba9709fa 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
@@ -54,7 +54,7 @@ static void __init MP_processor_info(struct mpc_cpu *m) | |||
54 | int apicid; | 54 | int apicid; |
55 | char *bootup_cpu = ""; | 55 | char *bootup_cpu = ""; |
56 | 56 | ||
57 | if (!(m->mpc_cpuflag & CPU_ENABLED)) { | 57 | if (!(m->cpuflag & CPU_ENABLED)) { |
58 | disabled_cpus++; | 58 | disabled_cpus++; |
59 | return; | 59 | return; |
60 | } | 60 | } |
@@ -62,15 +62,15 @@ static void __init MP_processor_info(struct mpc_cpu *m) | |||
62 | if (x86_quirks->mpc_apic_id) | 62 | if (x86_quirks->mpc_apic_id) |
63 | apicid = x86_quirks->mpc_apic_id(m); | 63 | apicid = x86_quirks->mpc_apic_id(m); |
64 | else | 64 | else |
65 | apicid = m->mpc_apicid; | 65 | apicid = m->apicid; |
66 | 66 | ||
67 | if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { | 67 | if (m->cpuflag & CPU_BOOTPROCESSOR) { |
68 | bootup_cpu = " (Bootup-CPU)"; | 68 | bootup_cpu = " (Bootup-CPU)"; |
69 | boot_cpu_physical_apicid = m->mpc_apicid; | 69 | boot_cpu_physical_apicid = m->apicid; |
70 | } | 70 | } |
71 | 71 | ||
72 | printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu); | 72 | printk(KERN_INFO "Processor #%d%s\n", m->apicid, bootup_cpu); |
73 | generic_processor_info(apicid, m->mpc_apicver); | 73 | generic_processor_info(apicid, m->apicver); |
74 | } | 74 | } |
75 | 75 | ||
76 | #ifdef CONFIG_X86_IO_APIC | 76 | #ifdef CONFIG_X86_IO_APIC |
@@ -542,17 +542,17 @@ static inline void __init construct_default_ISA_mptable(int mpc_default_type) | |||
542 | /* | 542 | /* |
543 | * 2 CPUs, numbered 0 & 1. | 543 | * 2 CPUs, numbered 0 & 1. |
544 | */ | 544 | */ |
545 | processor.mpc_type = MP_PROCESSOR; | 545 | processor.type = MP_PROCESSOR; |
546 | /* Either an integrated APIC or a discrete 82489DX. */ | 546 | /* Either an integrated APIC or a discrete 82489DX. */ |
547 | processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; | 547 | processor.apicver = mpc_default_type > 4 ? 0x10 : 0x01; |
548 | processor.mpc_cpuflag = CPU_ENABLED; | 548 | processor.cpuflag = CPU_ENABLED; |
549 | processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) | | 549 | processor.cpufeature = (boot_cpu_data.x86 << 8) | |
550 | (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask; | 550 | (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask; |
551 | processor.mpc_featureflag = boot_cpu_data.x86_capability[0]; | 551 | processor.featureflag = boot_cpu_data.x86_capability[0]; |
552 | processor.mpc_reserved[0] = 0; | 552 | processor.reserved[0] = 0; |
553 | processor.mpc_reserved[1] = 0; | 553 | processor.reserved[1] = 0; |
554 | for (i = 0; i < 2; i++) { | 554 | for (i = 0; i < 2; i++) { |
555 | processor.mpc_apicid = i; | 555 | processor.apicid = i; |
556 | MP_processor_info(&processor); | 556 | MP_processor_info(&processor); |
557 | } | 557 | } |
558 | 558 | ||