With LOCK_DEP enabled and DEBUG_OBJECTS_TIMERS, DSPBridge
SYNC_WaitOnMultipleEvents will fail with message
"ODEBUG: object is on stack, but not annotated"
since the timeout timer is on the stack, we should rightly use
init_timer_on_stack.

Cc: Ameya Palande <[email protected]>
Cc: Deepak Chitriki <[email protected]>
Cc: Felipe Contreras <[email protected]>
Cc: Hiroshi Doyu <[email protected]>
Cc: Omar Ramirez Luna <[email protected]>

Signed-off-by: Nishanth Menon <[email protected]>
---
 drivers/dsp/bridge/services/sync.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/dsp/bridge/services/sync.c 
b/drivers/dsp/bridge/services/sync.c
index c2d79c7..d246656 100644
--- a/drivers/dsp/bridge/services/sync.c
+++ b/drivers/dsp/bridge/services/sync.c
@@ -330,7 +330,7 @@ DSP_STATUS SYNC_WaitOnMultipleEvents(struct SYNC_OBJECT 
**hSyncEvents,
        if (Wp->state != wo_signalled && dwTimeout > 0) {
                struct timer_list timeout;
                if (dwTimeout != SYNC_INFINITE) {
-                       init_timer(&timeout);
+                       init_timer_on_stack(&timeout);
                        timeout.function = timeout_callback;
                        timeout.data = (unsigned long)Wp;
                        timeout.expires = jiffies + dwTimeout * HZ / 1000;
-- 
1.6.3.3

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to