diff options
| -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; |
