Commit df1a39ed authored by Suman Anna's avatar Suman Anna Committed by Hari Kanigeri

syslink: corrected the signature of the notify callback functions in ipc

updated the callback functions signature in messageq_transportshm and
nameserver_remotenotify modules to align with the latest notify code.
Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
parent 238f787a
...@@ -137,7 +137,7 @@ EXPORT_SYMBOL(mqtshm_debugmask); ...@@ -137,7 +137,7 @@ EXPORT_SYMBOL(mqtshm_debugmask);
* ============================================================================= * =============================================================================
*/ */
/* Callback function registered with the Notify module. */ /* Callback function registered with the Notify module. */
static void _messageq_transportshm_notify_fxn(unsigned long proc_id, static void _messageq_transportshm_notify_fxn(u16 proc_id,
u32 event_no, void *arg, u32 payload); u32 event_no, void *arg, u32 payload);
/* ============================================================================= /* =============================================================================
...@@ -702,7 +702,7 @@ u32 messageq_transportshm_shared_mem_req(const ...@@ -702,7 +702,7 @@ u32 messageq_transportshm_shared_mem_req(const
* Purpose: * Purpose:
* Callback function registered with the Notify module. * Callback function registered with the Notify module.
*/ */
void _messageq_transportshm_notify_fxn(unsigned long proc_id, u32 event_no, void _messageq_transportshm_notify_fxn(u16 proc_id, u32 event_no,
void *arg, u32 payload) void *arg, u32 payload)
{ {
struct messageq_transportshm_object *obj = NULL; struct messageq_transportshm_object *obj = NULL;
......
...@@ -268,7 +268,7 @@ void nameserver_remotenotify_params_init(void *handle, ...@@ -268,7 +268,7 @@ void nameserver_remotenotify_params_init(void *handle,
* Purpose: * Purpose:
* This will be called when a notify event is received * This will be called when a notify event is received
*/ */
void nameserver_remotenotify_callback(unsigned long int proc_id, u32 event_no, void nameserver_remotenotify_callback(u16 proc_id, u32 event_no,
void *arg, u32 payload) void *arg, u32 payload)
{ {
struct nameserver_remotenotify_obj *handle = NULL; struct nameserver_remotenotify_obj *handle = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment