diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-12 20:26:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-12 20:26:45 -0400 |
commit | fd18f00dd9d4e896060aa3d3e074a04830b13e50 (patch) | |
tree | 0cd7462694033eeaa9a5fa7e50de397fcc658024 /arch/blackfin/kernel | |
parent | de0c9cf96a0d34bb3b9f7e65853d7a81edb4146c (diff) | |
parent | c4a2c58d20953ff1080f50f705cdd952f6d301b2 (diff) |
Merge tag 'blackfin-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/realmz6/blackfin-linux
Pull blackfin updates from Steven Miao:
"Code cleanup, some previously ignored patches, and bug fixes"
* tag 'blackfin-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/realmz6/blackfin-linux:
blackfin: cleanup board files
bf609: clock: drop unused clock bit set/clear functions
Blackfin: bf537: rename "CONFIG_ADT75"
Blackfin: bf537: rename "CONFIG_AD7314"
Blackfin: bf537: rename ad2s120x ->ad2s1200
blackfin: bf537: fix typo "CONFIG_SND_SOC_ADV80X_MODULE"
blackfin: dma: current count mmr is read only
bfin_crc: Move architecture independant crc header file out of the blackfin folder.
bf54x: drop unuesd HOST status,control,timeout registers bit define macros
blackfin: portmux: cleanup head file
Blackfin: remove "config IP_CHECKSUM_L1"
blackfin: Remove GENERIC_GPIO config option again
blackfin:Use generic /proc/interrupts implementation
blackfin: bf60x: fix typo "CONFIG_PM_BFIN_WAKE_PA15_POL"
Diffstat (limited to 'arch/blackfin/kernel')
-rw-r--r-- | arch/blackfin/kernel/irqchip.c | 39 |
1 files changed, 9 insertions, 30 deletions
diff --git a/arch/blackfin/kernel/irqchip.c b/arch/blackfin/kernel/irqchip.c index ff3d747154ac..0ba25764b8c0 100644 --- a/arch/blackfin/kernel/irqchip.c +++ b/arch/blackfin/kernel/irqchip.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/kallsyms.h> | 11 | #include <linux/kallsyms.h> |
12 | #include <linux/interrupt.h> | 12 | #include <linux/interrupt.h> |
13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
14 | #include <linux/seq_file.h> | ||
14 | #include <asm/irq_handler.h> | 15 | #include <asm/irq_handler.h> |
15 | #include <asm/trace.h> | 16 | #include <asm/trace.h> |
16 | #include <asm/pda.h> | 17 | #include <asm/pda.h> |
@@ -33,37 +34,15 @@ static struct irq_desc bad_irq_desc = { | |||
33 | #endif | 34 | #endif |
34 | 35 | ||
35 | #ifdef CONFIG_PROC_FS | 36 | #ifdef CONFIG_PROC_FS |
36 | int show_interrupts(struct seq_file *p, void *v) | 37 | int arch_show_interrupts(struct seq_file *p, int prec) |
37 | { | 38 | { |
38 | int i = *(loff_t *) v, j; | 39 | int j; |
39 | struct irqaction *action; | 40 | |
40 | unsigned long flags; | 41 | seq_printf(p, "%*s: ", prec, "NMI"); |
41 | 42 | for_each_online_cpu(j) | |
42 | if (i < NR_IRQS) { | 43 | seq_printf(p, "%10u ", cpu_pda[j].__nmi_count); |
43 | struct irq_desc *desc = irq_to_desc(i); | 44 | seq_printf(p, " CORE Non Maskable Interrupt\n"); |
44 | 45 | seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count)); | |
45 | raw_spin_lock_irqsave(&desc->lock, flags); | ||
46 | action = desc->action; | ||
47 | if (!action) | ||
48 | goto skip; | ||
49 | seq_printf(p, "%3d: ", i); | ||
50 | for_each_online_cpu(j) | ||
51 | seq_printf(p, "%10u ", kstat_irqs_cpu(i, j)); | ||
52 | seq_printf(p, " %8s", irq_desc_get_chip(desc)->name); | ||
53 | seq_printf(p, " %s", action->name); | ||
54 | for (action = action->next; action; action = action->next) | ||
55 | seq_printf(p, " %s", action->name); | ||
56 | |||
57 | seq_putc(p, '\n'); | ||
58 | skip: | ||
59 | raw_spin_unlock_irqrestore(&desc->lock, flags); | ||
60 | } else if (i == NR_IRQS) { | ||
61 | seq_printf(p, "NMI: "); | ||
62 | for_each_online_cpu(j) | ||
63 | seq_printf(p, "%10u ", cpu_pda[j].__nmi_count); | ||
64 | seq_printf(p, " CORE Non Maskable Interrupt\n"); | ||
65 | seq_printf(p, "Err: %10u\n", atomic_read(&irq_err_count)); | ||
66 | } | ||
67 | return 0; | 46 | return 0; |
68 | } | 47 | } |
69 | #endif | 48 | #endif |