diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-29 14:05:13 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2011-03-29 14:05:13 +0100 |
commit | a9554c3a5d02d50aeff08203ca8dd1e2dffdaa0d (patch) | |
tree | 06a7b5091db007083cd2991d73dde622c3dff474 /arch/frv/kernel | |
parent | 12516469756f773ac756ac73c4070ba8efef155a (diff) |
frv: Select GENERIC_HARDIRQS_NO_DEPRECATED
All chips converted
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch/frv/kernel')
-rw-r--r-- | arch/frv/kernel/irq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/frv/kernel/irq.c b/arch/frv/kernel/irq.c index deaba569007f..d2365a7d7c57 100644 --- a/arch/frv/kernel/irq.c +++ b/arch/frv/kernel/irq.c @@ -74,7 +74,8 @@ int show_interrupts(struct seq_file *p, void *v) seq_printf(p, "%3d: ", i); for_each_present_cpu(cpu) seq_printf(p, "%10u ", kstat_irqs_cpu(i, cpu)); - seq_printf(p, " %10s", irq_desc[i].chip->name ? : "-"); + seq_printf(p, " %10s", + irq_desc[i].irq_data.chip->name ? : "-"); seq_printf(p, " %s", action->name); for (action = action->next; action; |