aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/apic
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2010-09-28 11:15:11 -0400
committerThomas Gleixner <tglx@linutronix.de>2010-10-12 10:53:37 -0400
commit5c2837fbaa609e615ef9a1c58a4cd26ce90be35b (patch)
tree0284a243fce7607a8f01ed0189e2164efdaa5bc8 /arch/x86/kernel/apic
parentd0fbca8f9304d1760fdc906b35b06e89fbdbb51f (diff)
dmar: Convert to new irq chip functions
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Ingo Molnar <mingo@elte.hu> Acked-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'arch/x86/kernel/apic')
-rw-r--r--arch/x86/kernel/apic/io_apic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 49aa857ff004..72b253ef310e 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -3578,8 +3578,8 @@ static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
3578 3578
3579static struct irq_chip dmar_msi_type = { 3579static struct irq_chip dmar_msi_type = {
3580 .name = "DMAR_MSI", 3580 .name = "DMAR_MSI",
3581 .unmask = dmar_msi_unmask, 3581 .irq_unmask = dmar_msi_unmask,
3582 .mask = dmar_msi_mask, 3582 .irq_mask = dmar_msi_mask,
3583 .irq_ack = ack_apic_edge, 3583 .irq_ack = ack_apic_edge,
3584#ifdef CONFIG_SMP 3584#ifdef CONFIG_SMP
3585 .set_affinity = dmar_msi_set_affinity, 3585 .set_affinity = dmar_msi_set_affinity,