Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 242542
b: refs/heads/master
c: 0ebec35
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 24, 2011
1 parent 4efb001 commit dfbaf2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 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: 4bdab7e0305383ce1126f43f46262f00a265d802
refs/heads/master: 0ebec35f683c4e94e4bfb877b71598e79b131638
9 changes: 4 additions & 5 deletions trunk/arch/um/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ int show_interrupts(struct seq_file *p, void *v)
for_each_online_cpu(j)
seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
#endif
seq_printf(p, " %14s", get_irq_desc_chip(desc)->name);
seq_printf(p, " %14s", irq_desc_get_chip(desc)->name);
seq_printf(p, " %s", action->name);

for (action=action->next; action; action = action->next)
Expand Down Expand Up @@ -390,11 +390,10 @@ void __init init_IRQ(void)
{
int i;

set_irq_chip_and_handler(TIMER_IRQ, &SIGVTALRM_irq_type, handle_edge_irq);
irq_set_chip_and_handler(TIMER_IRQ, &SIGVTALRM_irq_type, handle_edge_irq);

for (i = 1; i < NR_IRQS; i++) {
set_irq_chip_and_handler(i, &normal_irq_type, handle_edge_irq);
}
for (i = 1; i < NR_IRQS; i++)
irq_set_chip_and_handler(i, &normal_irq_type, handle_edge_irq);
}

/*
Expand Down

0 comments on commit dfbaf2d

Please sign in to comment.