summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHari Kanigeri <h-kanigeri2@ti.com>2009-12-12 20:10:05 -0600
committerSantosh Shilimkar <santosh.shilimkar@ti.com>2010-01-05 06:26:06 +0530
commitbb33d83194c286bb8dc6cdcad3d5261042dc6897 (patch)
treec9fd66073f8424e3698a15905ff8a000dae30290
parent543a4374de5458e1e11d4e30e71c3711b70adf86 (diff)
SYSLINK: ipc - call notify send event with true sycn flag
Call the Notify send event with the wait event flag set to true to ensure that the remote core has received the event. Signed-off-by: Hari Kanigeri <h-kanigeri2@ti.com>
-rw-r--r--drivers/dsp/syslink/multicore_ipc/messageq_transportshm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dsp/syslink/multicore_ipc/messageq_transportshm.c b/drivers/dsp/syslink/multicore_ipc/messageq_transportshm.c
index 344e7435770e..d07ca3479466 100644
--- a/drivers/dsp/syslink/multicore_ipc/messageq_transportshm.c
+++ b/drivers/dsp/syslink/multicore_ipc/messageq_transportshm.c
@@ -637,7 +637,7 @@ int messageq_transportshm_put(void *mqtshm_handle,
}
status = notify_sendevent(obj->notify_driver, obj->proc_id,
- obj->notify_event_no, 0, false);
+ obj->notify_event_no, 0, true);
if (status < 0)
goto notify_send_fail;
else