diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2011-05-18 23:31:37 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-05-20 11:40:59 (GMT) |
commit | d5371430840f3e8d3b8bdbc9c02867808f299449 (patch) | |
tree | 49d9fafac8fa03714920aa242b766ed8c7895ea9 /arch/x86/kernel/devicetree.c | |
parent | 57a6f74023c7fd943160d7635bbc8d9f66e2ab54 (diff) | |
download | linux-d5371430840f3e8d3b8bdbc9c02867808f299449.tar.xz |
x86, ioapic: Consolidate mp_ioapics[] into 'struct ioapic'
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: daniel.blueman@gmail.com
Link: http://lkml.kernel.org/r/20110518233157.909013179@sbsiddha-MOBL3.sc.intel.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/devicetree.c')
-rw-r--r-- | arch/x86/kernel/devicetree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/devicetree.c b/arch/x86/kernel/devicetree.c index e90f084..f06494e 100644 --- a/arch/x86/kernel/devicetree.c +++ b/arch/x86/kernel/devicetree.c @@ -407,7 +407,7 @@ static void __init ioapic_add_ofnode(struct device_node *np) } for (i = 0; i < nr_ioapics; i++) { - if (r.start == mp_ioapics[i].apicaddr) { + if (r.start == mpc_ioapic_addr(i)) { struct irq_domain *id; id = kzalloc(sizeof(*id), GFP_KERNEL); |