diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-01-19 06:26:32 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-01-21 05:55:24 -0500 |
commit | 51f3f15945aa2ccbc90baf17d912aed9981697b2 (patch) | |
tree | 3720de3930b080ccbbb31244ddc88afce4b89d90 /arch/h8300/kernel | |
parent | f9f91ef5e3a5bc1d4aa05b5d26c4d9e6dd930750 (diff) |
h8300: Use generic irq Kconfig
Switch to the generic irq Kconfig. h8300 has all irq chips converted
to the new functions, so select the GENERIC_HARDIRQS_NO_DEPRECATED
switch as well. Fixup the resulting fallout in show_interrupts().
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/h8300/kernel')
-rw-r--r-- | arch/h8300/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/h8300/kernel/irq.c b/arch/h8300/kernel/irq.c index 0c56735a2ff9..7643d39925d6 100644 --- a/arch/h8300/kernel/irq.c +++ b/arch/h8300/kernel/irq.c | |||
@@ -182,7 +182,7 @@ int show_interrupts(struct seq_file *p, void *v) | |||
182 | goto unlock; | 182 | goto unlock; |
183 | seq_printf(p, "%3d: ",i); | 183 | seq_printf(p, "%3d: ",i); |
184 | seq_printf(p, "%10u ", kstat_irqs(i)); | 184 | seq_printf(p, "%10u ", kstat_irqs(i)); |
185 | seq_printf(p, " %14s", irq_desc[i].chip->name); | 185 | seq_printf(p, " %14s", irq_desc[i].irq_data.chip->name); |
186 | seq_printf(p, "-%-8s", irq_desc[i].name); | 186 | seq_printf(p, "-%-8s", irq_desc[i].name); |
187 | seq_printf(p, " %s", action->name); | 187 | seq_printf(p, " %s", action->name); |
188 | 188 | ||