diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-29 09:05:13 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2011-03-29 09:05:13 -0400 |
commit | a9554c3a5d02d50aeff08203ca8dd1e2dffdaa0d (patch) | |
tree | 06a7b5091db007083cd2991d73dde622c3dff474 /arch/frv | |
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')
-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 | |||
6 | select HAVE_IRQ_WORK | 6 | select HAVE_IRQ_WORK |
7 | select HAVE_PERF_EVENTS | 7 | select HAVE_PERF_EVENTS |
8 | select HAVE_GENERIC_HARDIRQS | 8 | select HAVE_GENERIC_HARDIRQS |
9 | select GENERIC_HARDIRQS_NO_DEPRECATED | ||
9 | 10 | ||
10 | config ZONE_DMA | 11 | config ZONE_DMA |
11 | bool | 12 | 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) | |||
74 | seq_printf(p, "%3d: ", i); | 74 | seq_printf(p, "%3d: ", i); |
75 | for_each_present_cpu(cpu) | 75 | for_each_present_cpu(cpu) |
76 | seq_printf(p, "%10u ", kstat_irqs_cpu(i, cpu)); | 76 | seq_printf(p, "%10u ", kstat_irqs_cpu(i, cpu)); |
77 | seq_printf(p, " %10s", irq_desc[i].chip->name ? : "-"); | 77 | seq_printf(p, " %10s", |
78 | irq_desc[i].irq_data.chip->name ? : "-"); | ||
78 | seq_printf(p, " %s", action->name); | 79 | seq_printf(p, " %s", action->name); |
79 | for (action = action->next; | 80 | for (action = action->next; |
80 | action; | 81 | action; |