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 | |
parent | 12516469756f773ac756ac73c4070ba8efef155a (diff) | |
download | linux-stable-a9554c3a5d02d50aeff08203ca8dd1e2dffdaa0d.tar.gz linux-stable-a9554c3a5d02d50aeff08203ca8dd1e2dffdaa0d.tar.bz2 linux-stable-a9554c3a5d02d50aeff08203ca8dd1e2dffdaa0d.zip |
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')
-rw-r--r-- | arch/frv/Kconfig | 1 | ||||
-rw-r--r-- | arch/frv/kernel/irq.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/frv/Kconfig b/arch/frv/Kconfig index 968a33027831..3824132dba9e 100644 --- a/arch/frv/Kconfig +++ b/arch/frv/Kconfig @@ -6,6 +6,7 @@ config FRV select HAVE_IRQ_WORK select HAVE_PERF_EVENTS select HAVE_GENERIC_HARDIRQS + select GENERIC_HARDIRQS_NO_DEPRECATED config ZONE_DMA bool 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; |