Commit 2f6543df authored by Suman Anna's avatar Suman Anna Committed by Hari Kanigeri

syslink: corrected checkpatch warnings in ipc modules

Corrected the checkpatch warnings in ipc modules. Warnings related to
the volatile keyword still persist in gate_remote.c, messageq_transportshm.c
and listmp.h
Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
parent a73f0fbc
...@@ -69,7 +69,7 @@ struct heapbuf_proc_attrs { ...@@ -69,7 +69,7 @@ struct heapbuf_proc_attrs {
struct heapbuf_module_object { struct heapbuf_module_object {
struct list_head obj_list; /* List holding created objects */ struct list_head obj_list; /* List holding created objects */
void *nshandle; void *nshandle;
struct mutex*list_lock; /* lock for protecting obj_list */ struct mutex *list_lock; /* lock for protecting obj_list */
struct heap_config cfg; struct heap_config cfg;
struct heap_config defaultcfg; /* Default config values */ struct heap_config defaultcfg; /* Default config values */
struct heapbuf_params default_inst_params; /* Default instance struct heapbuf_params default_inst_params; /* Default instance
......
...@@ -118,7 +118,7 @@ exit: ...@@ -118,7 +118,7 @@ exit:
return retval; return retval;
} }
struct file_operations ipc_fops = { const struct file_operations ipc_fops = {
open: ipc_open, open: ipc_open,
release : ipc_release, release : ipc_release,
ioctl : ipc_ioctl, ioctl : ipc_ioctl,
......
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