Skip to content

Commit

Permalink
staging: tidspbridge: set12 remove hungarian from structs
Browse files Browse the repository at this point in the history
hungarian notation will be removed from the elements inside
structures, the next varibles will be renamed:

Original:               Replacement:
dw_buf_size             buf_size
dw_bytes                bytes
pattr                   attr
pdw_arg                 arg
ph_cmm_mgr              cmm_mgr
ph_event                event
ph_node                 node
ph_stream               stream
pmask                   mask
pp_argv                 argv
pp_buf_va               buf_va
pstatus                 status
ul_flags                flags
ul_seg_id               seg_id
usize                   size

Signed-off-by: Rene Sapiens <rene.sapiens@ti.com>
Signed-off-by: Armando Uribe <x0095078@ti.com>
Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
  • Loading branch information
Rene Sapiens authored and Omar Ramirez Luna committed Feb 5, 2011
1 parent 121e8f9 commit fbbb495
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 41 deletions.
42 changes: 21 additions & 21 deletions drivers/staging/tidspbridge/include/dspbridge/dspapi-ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ union trapped_args {
void *processor;
void *mpu_addr;
u32 size;
u32 ul_flags;
u32 flags;
} args_proc_flushmemory;

struct {
Expand All @@ -171,13 +171,13 @@ union trapped_args {
struct dsp_uuid __user *node_id_ptr;
struct dsp_cbdata __user *args;
struct dsp_nodeattrin __user *attr_in;
void *__user *ph_node;
void *__user *node;
} args_node_allocate;

struct {
void *node;
u32 usize;
struct dsp_bufferattr __user *pattr;
u32 size;
struct dsp_bufferattr __user *attr;
u8 *__user *buffer;
} args_node_allocmsgbuf;

Expand All @@ -191,7 +191,7 @@ union trapped_args {
u32 stream_id;
void *other_node;
u32 other_stream;
struct dsp_strmattr __user *pattrs;
struct dsp_strmattr __user *attrs;
struct dsp_cbdata __user *conn_param;
} args_node_connect;

Expand All @@ -205,13 +205,13 @@ union trapped_args {

struct {
void *node;
struct dsp_bufferattr __user *pattr;
struct dsp_bufferattr __user *attr;
u8 *buffer;
} args_node_freemsgbuf;

struct {
void *node;
struct dsp_nodeattr __user *pattr;
struct dsp_nodeattr __user *attr;
u32 attr_size;
} args_node_getattr;

Expand Down Expand Up @@ -244,7 +244,7 @@ union trapped_args {

struct {
void *node;
int __user *pstatus;
int __user *status;
} args_node_terminate;

struct {
Expand All @@ -257,7 +257,7 @@ union trapped_args {

struct {
void *stream;
u32 usize;
u32 size;
u8 *__user *ap_buffer;
u32 num_bufs;
} args_strm_allocatebuffer;
Expand All @@ -274,7 +274,7 @@ union trapped_args {

struct {
void *stream;
void **ph_event;
void **event;
} args_strm_geteventhandle;

struct {
Expand All @@ -291,8 +291,8 @@ union trapped_args {
struct {
void *stream;
u8 *buffer;
u32 dw_bytes;
u32 dw_buf_size;
u32 bytes;
u32 buf_size;
u32 arg;
} args_strm_issue;

Expand All @@ -301,15 +301,15 @@ union trapped_args {
u32 direction;
u32 index;
struct strm_attr __user *attr_in;
void *__user *ph_stream;
void *__user *stream;
} args_strm_open;

struct {
void *stream;
u8 *__user *buf_ptr;
u32 __user *bytes;
u32 __user *buf_size_ptr;
u32 __user *pdw_arg;
u32 __user *arg;
} args_strm_reclaim;

struct {
Expand All @@ -322,27 +322,27 @@ union trapped_args {
struct {
void *__user *stream_tab;
u32 strm_num;
u32 __user *pmask;
u32 __user *mask;
u32 timeout;
} args_strm_select;

/* CMM Module */
struct {
struct cmm_object *cmm_mgr;
u32 usize;
struct cmm_attrs *pattrs;
void **pp_buf_va;
u32 size;
struct cmm_attrs *attrs;
void **buf_va;
} args_cmm_allocbuf;

struct {
struct cmm_object *cmm_mgr;
void *buf_pa;
u32 ul_seg_id;
u32 seg_id;
} args_cmm_freebuf;

struct {
void *processor;
struct cmm_object *__user *ph_cmm_mgr;
struct cmm_object *__user *cmm_mgr;
} args_cmm_gethandle;

struct {
Expand All @@ -353,7 +353,7 @@ union trapped_args {
/* UTIL module */
struct {
s32 util_argc;
char **pp_argv;
char **argv;
} args_util_testdll;
};

Expand Down
40 changes: 20 additions & 20 deletions drivers/staging/tidspbridge/pmgr/dspapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -721,14 +721,14 @@ u32 procwrap_flush_memory(union trapped_args *args, void *pr_ctxt)
{
int status;

if (args->args_proc_flushmemory.ul_flags >
if (args->args_proc_flushmemory.flags >
PROC_WRITEBACK_INVALIDATE_MEM)
return -EINVAL;

status = proc_flush_memory(pr_ctxt,
args->args_proc_flushmemory.mpu_addr,
args->args_proc_flushmemory.size,
args->args_proc_flushmemory.ul_flags);
args->args_proc_flushmemory.flags);
return status;
}

Expand Down Expand Up @@ -1129,7 +1129,7 @@ u32 nodewrap_allocate(union trapped_args *args, void *pr_ctxt)
}
if (!status) {
nodeid = node_res->id + 1;
CP_TO_USR(args->args_node_allocate.ph_node, &nodeid,
CP_TO_USR(args->args_node_allocate.node, &nodeid,
status, 1);
if (status) {
status = -EFAULT;
Expand Down Expand Up @@ -1159,11 +1159,11 @@ u32 nodewrap_alloc_msg_buf(union trapped_args *args, void *pr_ctxt)
if (!node_res)
return -EFAULT;

if (!args->args_node_allocmsgbuf.usize)
if (!args->args_node_allocmsgbuf.size)
return -EINVAL;

if (args->args_node_allocmsgbuf.pattr) { /* Optional argument */
CP_FM_USR(&attr, args->args_node_allocmsgbuf.pattr, status, 1);
if (args->args_node_allocmsgbuf.attr) { /* Optional argument */
CP_FM_USR(&attr, args->args_node_allocmsgbuf.attr, status, 1);
if (!status)
pattr = &attr;

Expand All @@ -1172,7 +1172,7 @@ u32 nodewrap_alloc_msg_buf(union trapped_args *args, void *pr_ctxt)
CP_FM_USR(&pbuffer, args->args_node_allocmsgbuf.buffer, status, 1);
if (!status) {
status = node_alloc_msg_buf(node_res->node,
args->args_node_allocmsgbuf.usize,
args->args_node_allocmsgbuf.size,
pattr, &pbuffer);
}
CP_TO_USR(args->args_node_allocmsgbuf.buffer, &pbuffer, status, 1);
Expand Down Expand Up @@ -1253,8 +1253,8 @@ u32 nodewrap_connect(union trapped_args *args, void *pr_ctxt)
if (status)
goto func_cont;
}
if (args->args_node_connect.pattrs) { /* Optional argument */
CP_FM_USR(&attrs, args->args_node_connect.pattrs, status, 1);
if (args->args_node_connect.attrs) { /* Optional argument */
CP_FM_USR(&attrs, args->args_node_connect.attrs, status, 1);
if (!status)
pattrs = &attrs;

Expand Down Expand Up @@ -1323,8 +1323,8 @@ u32 nodewrap_free_msg_buf(union trapped_args *args, void *pr_ctxt)
if (!node_res)
return -EFAULT;

if (args->args_node_freemsgbuf.pattr) { /* Optional argument */
CP_FM_USR(&attr, args->args_node_freemsgbuf.pattr, status, 1);
if (args->args_node_freemsgbuf.attr) { /* Optional argument */
CP_FM_USR(&attr, args->args_node_freemsgbuf.attr, status, 1);
if (!status)
pattr = &attr;

Expand Down Expand Up @@ -1358,7 +1358,7 @@ u32 nodewrap_get_attr(union trapped_args *args, void *pr_ctxt)

status = node_get_attr(node_res->node, &attr,
args->args_node_getattr.attr_size);
CP_TO_USR(args->args_node_getattr.pattr, &attr, status, 1);
CP_TO_USR(args->args_node_getattr.attr, &attr, status, 1);

return status;
}
Expand Down Expand Up @@ -1495,7 +1495,7 @@ u32 nodewrap_terminate(union trapped_args *args, void *pr_ctxt)

status = node_terminate(node_res->node, &tempstatus);

CP_TO_USR(args->args_node_terminate.pstatus, &tempstatus, status, 1);
CP_TO_USR(args->args_node_terminate.status, &tempstatus, status, 1);

return status;
}
Expand Down Expand Up @@ -1564,7 +1564,7 @@ u32 strmwrap_allocate_buffer(union trapped_args *args, void *pr_ctxt)
return -ENOMEM;

status = strm_allocate_buffer(strm_res,
args->args_strm_allocatebuffer.usize,
args->args_strm_allocatebuffer.size,
ap_buffer, num_bufs, pr_ctxt);
if (!status) {
CP_TO_USR(args->args_strm_allocatebuffer.ap_buffer, ap_buffer,
Expand Down Expand Up @@ -1715,8 +1715,8 @@ u32 strmwrap_issue(union trapped_args *args, void *pr_ctxt)
in chnl_sm.c */
status = strm_issue(strm_res->stream,
args->args_strm_issue.buffer,
args->args_strm_issue.dw_bytes,
args->args_strm_issue.dw_buf_size,
args->args_strm_issue.bytes,
args->args_strm_issue.buf_size,
args->args_strm_issue.arg);

return status;
Expand Down Expand Up @@ -1756,7 +1756,7 @@ u32 strmwrap_open(union trapped_args *args, void *pr_ctxt)
pr_ctxt);
if (!status) {
strmid = strm_res_obj->id + 1;
CP_TO_USR(args->args_strm_open.ph_stream, &strmid, status, 1);
CP_TO_USR(args->args_strm_open.stream, &strmid, status, 1);
}
return status;
}
Expand All @@ -1782,7 +1782,7 @@ u32 strmwrap_reclaim(union trapped_args *args, void *pr_ctxt)
&ul_bytes, &ul_buf_size, &dw_arg);
CP_TO_USR(args->args_strm_reclaim.buf_ptr, &buf_ptr, status, 1);
CP_TO_USR(args->args_strm_reclaim.bytes, &ul_bytes, status, 1);
CP_TO_USR(args->args_strm_reclaim.pdw_arg, &dw_arg, status, 1);
CP_TO_USR(args->args_strm_reclaim.arg, &dw_arg, status, 1);

if (args->args_strm_reclaim.buf_size_ptr != NULL) {
CP_TO_USR(args->args_strm_reclaim.buf_size_ptr, &ul_buf_size,
Expand Down Expand Up @@ -1855,7 +1855,7 @@ u32 strmwrap_select(union trapped_args *args, void *pr_ctxt)
status = strm_select(strm_tab, args->args_strm_select.strm_num,
&mask, args->args_strm_select.timeout);
}
CP_TO_USR(args->args_strm_select.pmask, &mask, status, 1);
CP_TO_USR(args->args_strm_select.mask, &mask, status, 1);
return status;
}

Expand Down Expand Up @@ -1892,7 +1892,7 @@ u32 cmmwrap_get_handle(union trapped_args *args, void *pr_ctxt)

status = cmm_get_handle(hprocessor, &hcmm_mgr);

CP_TO_USR(args->args_cmm_gethandle.ph_cmm_mgr, &hcmm_mgr, status, 1);
CP_TO_USR(args->args_cmm_gethandle.cmm_mgr, &hcmm_mgr, status, 1);

return status;
}
Expand Down

0 comments on commit fbbb495

Please sign in to comment.