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

SYSLINK: ipc - remove extra member from listmp_params

listmp_params has an extra additional member heap_handle, which is not
defined in the user-space. This has been removed.
Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
parent 9596a20b
......@@ -150,8 +150,6 @@ struct listmp_params {
/*!< Name of the object */
struct mutex *lock_handle;
/*!< Lock used for critical region management of the list */
void *heap_handle;
/*!< Handle of the heap to be used */
enum listmp_type list_type ;
/*!< Type of list */
};
......
......@@ -125,7 +125,6 @@ struct listmp_sharedmemory_module_object listmp_sharedmemory_state = {
.default_inst_params.shared_addr_size = 0,
.default_inst_params.name = NULL,
.default_inst_params.lock_handle = NULL,
.default_inst_params.heap_handle = NULL,
.default_inst_params.list_type = listmp_type_SHARED};
/*!
......@@ -1344,9 +1343,6 @@ listmp_sharedmemory_handle _listmp_sharedmemory_create(
}
if (params->heap_handle != NULL)
obj->params.heap_handle = params->heap_handle;
/* Update processor information */
obj->owner = kmalloc(sizeof(struct listmp_proc_attrs),
GFP_KERNEL);
......
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