Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39079
b: refs/heads/master
c: e630015
h: refs/heads/master
i:
  39077: 2bf8573
  39075: 9556dd4
  39071: d8a25da
v: v3
  • Loading branch information
Linus Torvalds committed Oct 6, 2006
1 parent f375e8d commit c4cefca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: e317c8ccaaf900abf39cc3240e4dc5ba82a3cc67
refs/heads/master: e630015504cdd4d166c371fec39b8ca258fcbc0e
3 changes: 2 additions & 1 deletion trunk/arch/arm/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ static struct irq_desc bad_irq_desc = {
*/
asmlinkage void asm_do_IRQ(unsigned int irq, struct pt_regs *regs)
{
struct pt_regs *old_regs = set_irq_regs(regs);
struct irqdesc *desc = irq_desc + irq;

/*
Expand All @@ -122,13 +123,13 @@ asmlinkage void asm_do_IRQ(unsigned int irq, struct pt_regs *regs)

irq_enter();

set_irq_regs(regs);
desc_handle_irq(irq, desc);

/* AT91 specific workaround */
irq_finish(irq);

irq_exit();
set_irq_regs(old_regs);
}

void set_irq_flags(unsigned int irq, unsigned int iflags)
Expand Down

0 comments on commit c4cefca

Please sign in to comment.