x86: rename all fields of mpc_iopic 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>

authored by

Jaswinder Singh Rajput and committed by
Ingo Molnar
5df82c7d dd399dcb

+18 -18
+5 -5
arch/x86/include/asm/mpspec_def.h
··· 109 #define MPC_APIC_USABLE 0x01 110 111 struct mpc_ioapic { 112 - unsigned char mpc_type; 113 - unsigned char mpc_apicid; 114 - unsigned char mpc_apicver; 115 - unsigned char mpc_flags; 116 - unsigned int mpc_apicaddr; 117 }; 118 119 struct mpc_intsrc {
··· 109 #define MPC_APIC_USABLE 0x01 110 111 struct mpc_ioapic { 112 + unsigned char type; 113 + unsigned char apicid; 114 + unsigned char apicver; 115 + unsigned char flags; 116 + unsigned int apicaddr; 117 }; 118 119 struct mpc_intsrc {
+13 -13
arch/x86/kernel/mpparse.c
··· 135 136 static void __init MP_ioapic_info(struct mpc_ioapic *m) 137 { 138 - if (!(m->mpc_flags & MPC_APIC_USABLE)) 139 return; 140 141 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n", 142 - m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr); 143 144 - if (bad_ioapic(m->mpc_apicaddr)) 145 return; 146 147 - mp_ioapics[nr_ioapics].mp_apicaddr = m->mpc_apicaddr; 148 - mp_ioapics[nr_ioapics].mp_apicid = m->mpc_apicid; 149 - mp_ioapics[nr_ioapics].mp_type = m->mpc_type; 150 - mp_ioapics[nr_ioapics].mp_apicver = m->mpc_apicver; 151 - mp_ioapics[nr_ioapics].mp_flags = m->mpc_flags; 152 nr_ioapics++; 153 } 154 ··· 513 MP_bus_info(&bus); 514 } 515 516 - ioapic.mpc_type = MP_IOAPIC; 517 - ioapic.mpc_apicid = 2; 518 - ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; 519 - ioapic.mpc_flags = MPC_APIC_USABLE; 520 - ioapic.mpc_apicaddr = 0xFEC00000; 521 MP_ioapic_info(&ioapic); 522 523 /*
··· 135 136 static void __init MP_ioapic_info(struct mpc_ioapic *m) 137 { 138 + if (!(m->flags & MPC_APIC_USABLE)) 139 return; 140 141 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n", 142 + m->apicid, m->apicver, m->apicaddr); 143 144 + if (bad_ioapic(m->apicaddr)) 145 return; 146 147 + mp_ioapics[nr_ioapics].mp_apicaddr = m->apicaddr; 148 + mp_ioapics[nr_ioapics].mp_apicid = m->apicid; 149 + mp_ioapics[nr_ioapics].mp_type = m->type; 150 + mp_ioapics[nr_ioapics].mp_apicver = m->apicver; 151 + mp_ioapics[nr_ioapics].mp_flags = m->flags; 152 nr_ioapics++; 153 } 154 ··· 513 MP_bus_info(&bus); 514 } 515 516 + ioapic.type = MP_IOAPIC; 517 + ioapic.apicid = 2; 518 + ioapic.apicver = mpc_default_type > 4 ? 0x10 : 0x01; 519 + ioapic.flags = MPC_APIC_USABLE; 520 + ioapic.apicaddr = 0xFEC00000; 521 MP_ioapic_info(&ioapic); 522 523 /*