diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-12 07:16:17 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-14 05:58:27 -0500 |
commit | b5ba7e6d1e7e2ac808afd21be1e56dc34caf20e6 (patch) | |
tree | c9c0b8fcf2cb12a639b63c3060028d89d3a265ca /arch/x86/kernel/mpparse.c | |
parent | 3b9dc9f2f123286aaade54c45fef6723d587c664 (diff) |
x86: replacing mp_config_ioapic with mpc_ioapic
Impact: cleanup, solve 80 columns wrap problems
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 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index 8385d4e7e15d..a86a65537433 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
@@ -143,11 +143,11 @@ static void __init MP_ioapic_info(struct mpc_ioapic *m) | |||
143 | if (bad_ioapic(m->apicaddr)) | 143 | if (bad_ioapic(m->apicaddr)) |
144 | return; | 144 | return; |
145 | 145 | ||
146 | mp_ioapics[nr_ioapics].mp_apicaddr = m->apicaddr; | 146 | mp_ioapics[nr_ioapics].apicaddr = m->apicaddr; |
147 | mp_ioapics[nr_ioapics].mp_apicid = m->apicid; | 147 | mp_ioapics[nr_ioapics].apicid = m->apicid; |
148 | mp_ioapics[nr_ioapics].mp_type = m->type; | 148 | mp_ioapics[nr_ioapics].type = m->type; |
149 | mp_ioapics[nr_ioapics].mp_apicver = m->apicver; | 149 | mp_ioapics[nr_ioapics].apicver = m->apicver; |
150 | mp_ioapics[nr_ioapics].mp_flags = m->flags; | 150 | mp_ioapics[nr_ioapics].flags = m->flags; |
151 | nr_ioapics++; | 151 | nr_ioapics++; |
152 | } | 152 | } |
153 | 153 | ||
@@ -416,7 +416,7 @@ static void __init construct_default_ioirq_mptable(int mpc_default_type) | |||
416 | intsrc.type = MP_INTSRC; | 416 | intsrc.type = MP_INTSRC; |
417 | intsrc.irqflag = 0; /* conforming */ | 417 | intsrc.irqflag = 0; /* conforming */ |
418 | intsrc.srcbus = 0; | 418 | intsrc.srcbus = 0; |
419 | intsrc.dstapic = mp_ioapics[0].mp_apicid; | 419 | intsrc.dstapic = mp_ioapics[0].apicid; |
420 | 420 | ||
421 | intsrc.irqtype = mp_INT; | 421 | intsrc.irqtype = mp_INT; |
422 | 422 | ||