Skip to content

Commit

Permalink
frv: Select GENERIC_HARDIRQS_NO_DEPRECATED
Browse files Browse the repository at this point in the history
All chips converted

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Howells <dhowells@redhat.com>
  • Loading branch information
Thomas Gleixner authored and dhowells committed Mar 29, 2011
1 parent 1251646 commit a9554c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions arch/frv/Kconfig
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion arch/frv/kernel/irq.c
Expand Up @@ -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;
Expand Down

0 comments on commit a9554c3

Please sign in to comment.