diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-08-02 09:19:17 -0400 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-08-04 06:59:42 -0400 |
commit | d77eab8cb18dc4b8adfa82088e95b48c654c66b9 (patch) | |
tree | c512a06d7f2894a4ab0a3cad2b6901866b3aef7c /arch/cris/arch-v10 | |
parent | 5866d7ef9553c0107576dc1bc1d5c6acb68e8f87 (diff) |
CRIS: Fasttimer: Remove obsolete ifdef
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch/cris/arch-v10')
-rw-r--r-- | arch/cris/arch-v10/kernel/fasttimer.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/cris/arch-v10/kernel/fasttimer.c b/arch/cris/arch-v10/kernel/fasttimer.c index 5ff08a8695e9..8a8196ee8ce8 100644 --- a/arch/cris/arch-v10/kernel/fasttimer.c +++ b/arch/cris/arch-v10/kernel/fasttimer.c | |||
@@ -467,11 +467,7 @@ timer1_handler(int irq, void *dev_id) | |||
467 | 467 | ||
468 | static void wake_up_func(unsigned long data) | 468 | static void wake_up_func(unsigned long data) |
469 | { | 469 | { |
470 | #ifdef DECLARE_WAITQUEUE | 470 | wait_queue_head_t *sleep_wait_p = (wait_queue_head_t *)data; |
471 | wait_queue_head_t *sleep_wait_p = (wait_queue_head_t*)data; | ||
472 | #else | ||
473 | struct wait_queue **sleep_wait_p = (struct wait_queue **)data; | ||
474 | #endif | ||
475 | wake_up(sleep_wait_p); | 471 | wake_up(sleep_wait_p); |
476 | } | 472 | } |
477 | 473 | ||