diff options
author | Jeff Dike <jdike@addtoit.com> | 2006-07-10 07:45:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-10 16:24:23 -0400 |
commit | 8ae43ff8aa60f81f5d82a4911d704ce8902d11fb (patch) | |
tree | 6aced5cef586796d00e939bcac8c2dcbd3efceaf /arch/um/kernel | |
parent | bacf4549187ddb624a5d89129c7dccc0ca67ce7c (diff) |
[PATCH] uml: mark forward_interrupts as being mode-specific
Mark forward_interrupts as being tt-mode only.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/irq.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/kernel/irq.c b/arch/um/kernel/irq.c index bfd0bdc8cd40..519cdb0a7708 100644 --- a/arch/um/kernel/irq.c +++ b/arch/um/kernel/irq.c | |||
@@ -350,6 +350,7 @@ int deactivate_all_fds(void) | |||
350 | return 0; | 350 | return 0; |
351 | } | 351 | } |
352 | 352 | ||
353 | #ifdef CONFIG_MODE_TT | ||
353 | void forward_interrupts(int pid) | 354 | void forward_interrupts(int pid) |
354 | { | 355 | { |
355 | struct irq_fd *irq; | 356 | struct irq_fd *irq; |
@@ -371,6 +372,7 @@ void forward_interrupts(int pid) | |||
371 | } | 372 | } |
372 | irq_unlock(flags); | 373 | irq_unlock(flags); |
373 | } | 374 | } |
375 | #endif | ||
374 | 376 | ||
375 | /* | 377 | /* |
376 | * do_IRQ handles all normal device IRQ's (the special | 378 | * do_IRQ handles all normal device IRQ's (the special |