Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243303
b: refs/heads/master
c: 4a983ed
h: refs/heads/master
i:
  243301: c5e9a0e
  243299: 39432f4
  243295: d63a718
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 7bf6af3 commit 70f7eaf
Show file tree
Hide file tree
Showing 2 changed files with 6 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: 35d75b0e03520ac09abd4a1f9490facf6a1ac82e
refs/heads/master: 4a983ed44f38a6a41649aaab54d699d5248d3a51
10 changes: 5 additions & 5 deletions trunk/arch/ia64/hp/sim/hpsim_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ static struct irq_chip irq_type_hp_sim = {
void __init
hpsim_irq_init (void)
{
struct irq_desc *idesc;
int i;

for (i = 0; i < NR_IRQS; ++i) {
idesc = irq_desc + i;
if (idesc->chip == &no_irq_chip)
idesc->chip = &irq_type_hp_sim;
for_each_active_irq(i) {
struct irq_chip *chip = get_irq_chip(i);

if (chip == &no_irq_chip)
set_irq_chip(i, &irq_type_hp_sim);
}
}

0 comments on commit 70f7eaf

Please sign in to comment.