diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-09-28 11:22:09 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-12 10:53:37 -0400 |
commit | e9f7ac664bfc36685a8eb3315ec21c067d0cee36 (patch) | |
tree | 91d89ce151996d8a1e508a17f9b8a461ef545afd /arch | |
parent | 5c2837fbaa609e615ef9a1c58a4cd26ce90be35b (diff) |
ht: Convert to new irq_chip functions
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/apic/io_apic.c | 4 |
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 72b253ef310e..5579f3f5943a 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c | |||
@@ -3730,8 +3730,8 @@ static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask) | |||
3730 | 3730 | ||
3731 | static struct irq_chip ht_irq_chip = { | 3731 | static struct irq_chip ht_irq_chip = { |
3732 | .name = "PCI-HT", | 3732 | .name = "PCI-HT", |
3733 | .mask = mask_ht_irq, | 3733 | .irq_mask = mask_ht_irq, |
3734 | .unmask = unmask_ht_irq, | 3734 | .irq_unmask = unmask_ht_irq, |
3735 | .irq_ack = ack_apic_edge, | 3735 | .irq_ack = ack_apic_edge, |
3736 | #ifdef CONFIG_SMP | 3736 | #ifdef CONFIG_SMP |
3737 | .set_affinity = set_ht_irq_affinity, | 3737 | .set_affinity = set_ht_irq_affinity, |