Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250415
b: refs/heads/master
c: 531d289
h: refs/heads/master
i:
  250413: cd6a52d
  250411: ae6c79e
  250407: 4120267
  250399: 68f4b7e
v: v3
  • Loading branch information
Geert Uytterhoeven authored and Greg Ungerer committed May 24, 2011
1 parent 97f1299 commit 3b0f4bf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 29 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0b4bf78214efcdadbbe5b09c5dff35dcc9bcb3df
refs/heads/master: 531d2895917566ab0d82faa0696d0576569f1053
1 change: 1 addition & 0 deletions trunk/arch/m68k/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ config M68K
select HAVE_AOUT if MMU
select GENERIC_ATOMIC64 if MMU
select HAVE_GENERIC_HARDIRQS if !MMU
select GENERIC_IRQ_SHOW if !MMU

config RWSEM_GENERIC_SPINLOCK
bool
Expand Down
28 changes: 0 additions & 28 deletions trunk/arch/m68k/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,3 @@ asmlinkage void do_IRQ(int irq, struct pt_regs *regs)

set_irq_regs(oldregs);
}

int show_interrupts(struct seq_file *p, void *v)
{
struct irqaction *ap;
int irq = *((loff_t *) v);

if (irq == 0)
seq_puts(p, " CPU0\n");

if (irq < NR_IRQS) {
struct irq_desc *desc = irq_to_desc(irq);

ap = desc->action;
if (ap) {
seq_printf(p, "%3d: ", irq);
seq_printf(p, "%10u ", kstat_irqs(irq));
seq_printf(p, "%14s ", irq_desc_get_chip(desc)->name);

seq_printf(p, "%s", ap->name);
for (ap = ap->next; ap; ap = ap->next)
seq_printf(p, ", %s", ap->name);
seq_putc(p, '\n');
}
}

return 0;
}

0 comments on commit 3b0f4bf

Please sign in to comment.