diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-09-28 11:15:11 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-12 10:53:37 -0400 |
commit | 5c2837fbaa609e615ef9a1c58a4cd26ce90be35b (patch) | |
tree | 0284a243fce7607a8f01ed0189e2164efdaa5bc8 /arch | |
parent | d0fbca8f9304d1760fdc906b35b06e89fbdbb51f (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')
-rw-r--r-- | arch/ia64/kernel/msi_ia64.c | 4 | ||||
-rw-r--r-- | arch/x86/kernel/apic/io_apic.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/ia64/kernel/msi_ia64.c b/arch/ia64/kernel/msi_ia64.c index dbb43424704c..00b19a416eab 100644 --- a/arch/ia64/kernel/msi_ia64.c +++ b/arch/ia64/kernel/msi_ia64.c | |||
@@ -160,8 +160,8 @@ static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask) | |||
160 | 160 | ||
161 | static struct irq_chip dmar_msi_type = { | 161 | static struct irq_chip dmar_msi_type = { |
162 | .name = "DMAR_MSI", | 162 | .name = "DMAR_MSI", |
163 | .unmask = dmar_msi_unmask, | 163 | .irq_unmask = dmar_msi_unmask, |
164 | .mask = dmar_msi_mask, | 164 | .irq_mask = dmar_msi_mask, |
165 | .ack = ia64_ack_msi_irq, | 165 | .ack = ia64_ack_msi_irq, |
166 | #ifdef CONFIG_SMP | 166 | #ifdef CONFIG_SMP |
167 | .set_affinity = dmar_msi_set_affinity, | 167 | .set_affinity = dmar_msi_set_affinity, |
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 | ||
3579 | static struct irq_chip dmar_msi_type = { | 3579 | static 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, |