Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116381
b: refs/heads/master
c: 7e6e178
h: refs/heads/master
i:
  116379: 9ce7ee8
v: v3
  • Loading branch information
Pawel MOLL authored and Ingo Molnar committed Sep 6, 2008
1 parent 4aa408a commit cffbf04
Show file tree
Hide file tree
Showing 3 changed files with 3 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: 377bf1e4ac2d894791733270604594c7c851ef83
refs/heads/master: 7e6e178ab1548c8d894a77593e757acf4510b8ba
2 changes: 1 addition & 1 deletion trunk/kernel/irq/chip.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ __set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
desc->status &= ~IRQ_DISABLED;
desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE;
desc->depth = 0;
desc->chip->unmask(irq);
desc->chip->startup(irq);
}
spin_unlock_irqrestore(&desc->lock, flags);
}
Expand Down
5 changes: 1 addition & 4 deletions trunk/kernel/irq/manage.c
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,7 @@ int setup_irq(unsigned int irq, struct irqaction *new)
if (!(desc->status & IRQ_NOAUTOEN)) {
desc->depth = 0;
desc->status &= ~IRQ_DISABLED;
if (desc->chip->startup)
desc->chip->startup(irq);
else
desc->chip->enable(irq);
desc->chip->startup(irq);
} else
/* Undo nested disables: */
desc->depth = 1;
Expand Down

0 comments on commit cffbf04

Please sign in to comment.