Skip to content

Commit

Permalink
[PATCH] um: irq changes break build
Browse files Browse the repository at this point in the history
Fixup broken UML build due to 7d12e78
"IRQ: Maintain regs pointer globally rather than passing to IRQ handlers".

Cc: David Howells <dhowells@redhat.com>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Paolo "Blaisorblade" Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Pekka Enberg authored and Linus Torvalds committed Oct 6, 2006
1 parent c6b0a9f commit 96e1a87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion arch/um/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ void forward_interrupts(int pid)
unsigned int do_IRQ(int irq, union uml_pt_regs *regs)
{
irq_enter();
__do_IRQ(irq, (struct pt_regs *)regs);
__do_IRQ(irq);
irq_exit();
return 1;
}
Expand Down
1 change: 1 addition & 0 deletions include/asm-um/irq_regs.h
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include <asm-generic/irq_regs.h>

0 comments on commit 96e1a87

Please sign in to comment.