From 608c547aa1812de4d9e41ad34eb686c45d404e9d Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Sat, 19 Jan 2008 13:47:26 +0000 Subject: Fix warnings. Remove a now unneeded parameter macro from run_blocking_ops. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16109 a1c6a512-1295-4272-9138-f99709370657 --- firmware/thread.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/firmware/thread.c b/firmware/thread.c index 96088bec72..ca6c64039e 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -144,9 +144,11 @@ static void core_schedule_wakeup(struct thread_entry *thread) static inline void core_perform_wakeup(IF_COP_VOID(unsigned int core)) __attribute__((always_inline)); +#if NUM_CORES > 1 static inline void run_blocking_ops( - IF_COP_VOID(unsigned int core, struct thread_entry *thread)) + unsigned int core, struct thread_entry *thread) __attribute__((always_inline)); +#endif static void thread_stkov(struct thread_entry *thread) __attribute__((noinline)); @@ -1361,7 +1363,7 @@ static void check_tmo_threads(void) */ #if NUM_CORES > 1 static inline void run_blocking_ops( - IF_COP_VOID(unsigned int core, struct thread_entry *thread)) + unsigned int core, struct thread_entry *thread) { struct thread_blk_ops *ops = &cores[IF_COP_CORE(core)].blk_ops; const unsigned flags = ops->flags; @@ -1600,7 +1602,7 @@ void switch_thread(struct thread_entry *old) #if NUM_CORES > 1 /* Run any blocking operations requested before switching/sleeping */ - run_blocking_ops(IF_COP(core, old)); + run_blocking_ops(core, old); #endif /* Go through the list of sleeping task to check if we need to wake up -- cgit v1.2.3