Commit 96e1a87392293cf895ea99ab70758453897c7bbf

Authored by Pekka Enberg
Committed by Linus Torvalds
1 parent c6b0a9f87b

[PATCH] um: irq changes break build

Fixup broken UML build due to 7d12e780e003f93433d49ce78cfedf4b4c52adc5
"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>

Showing 2 changed files with 2 additions and 1 deletions Side-by-side Diff

arch/um/kernel/irq.c
... ... @@ -356,7 +356,7 @@
356 356 unsigned int do_IRQ(int irq, union uml_pt_regs *regs)
357 357 {
358 358 irq_enter();
359   - __do_IRQ(irq, (struct pt_regs *)regs);
  359 + __do_IRQ(irq);
360 360 irq_exit();
361 361 return 1;
362 362 }
include/asm-um/irq_regs.h
  1 +#include <asm-generic/irq_regs.h>