aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/include/dspbridge/strm.h
diff options
context:
space:
mode:
authorRene Sapiens <rene.sapiens@ti.com>2010-07-09 22:24:01 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 13:45:35 -0400
commitdaa89e6cdf1ad0ba18680f41237b659ef0c27c72 (patch)
treebf59bd9ab2c90893de208ec4e4056f428ac662b6 /drivers/staging/tidspbridge/include/dspbridge/strm.h
parente436d07db9db374105daa6c15d853e3f13a37104 (diff)
staging: ti dspbridge: Rename words with camel case
The intention of this patch is to rename the remaining variables with camel case. Variables will be renamed avoiding camel case and Hungarian notation. The words to be renamed in this patch are: ======================================== phNldrObj to nldr_ovlyobj phNldr to nldr phNodeMgr to node_man pHostBuf to host_buf pHostConfig to host_config phRmmMgr to rmm_mgr phStrmMgr to strm_man phStrm to strm_objct phXlator to xlator physicalAddr to physical_addr pInfo to channel_info pIOC to chan_ioc pLib to lib_obj pList to lst pMemBuf to mem_buf ======================================== Signed-off-by: Rene Sapiens <rene.sapiens@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/tidspbridge/include/dspbridge/strm.h')
-rw-r--r--drivers/staging/tidspbridge/include/dspbridge/strm.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/staging/tidspbridge/include/dspbridge/strm.h b/drivers/staging/tidspbridge/include/dspbridge/strm.h
index c4a4d652a64..6572442f6da 100644
--- a/drivers/staging/tidspbridge/include/dspbridge/strm.h
+++ b/drivers/staging/tidspbridge/include/dspbridge/strm.h
@@ -75,7 +75,7 @@ extern int strm_close(struct strm_object *stream_obj,
75 * Create a STRM manager object. This object holds information about the 75 * Create a STRM manager object. This object holds information about the
76 * device needed to open streams. 76 * device needed to open streams.
77 * Parameters: 77 * Parameters:
78 * phStrmMgr: Location to store handle to STRM manager object on 78 * strm_man: Location to store handle to STRM manager object on
79 * output. 79 * output.
80 * dev_obj: Device for this processor. 80 * dev_obj: Device for this processor.
81 * Returns: 81 * Returns:
@@ -84,13 +84,13 @@ extern int strm_close(struct strm_object *stream_obj,
84 * -EPERM: General failure. 84 * -EPERM: General failure.
85 * Requires: 85 * Requires:
86 * strm_init(void) called. 86 * strm_init(void) called.
87 * phStrmMgr != NULL. 87 * strm_man != NULL.
88 * dev_obj != NULL. 88 * dev_obj != NULL.
89 * Ensures: 89 * Ensures:
90 * 0: Valid *phStrmMgr. 90 * 0: Valid *strm_man.
91 * error: *phStrmMgr == NULL. 91 * error: *strm_man == NULL.
92 */ 92 */
93extern int strm_create(OUT struct strm_mgr **phStrmMgr, 93extern int strm_create(OUT struct strm_mgr **strm_man,
94 struct dev_object *dev_obj); 94 struct dev_object *dev_obj);
95 95
96/* 96/*
@@ -254,7 +254,7 @@ extern int strm_issue(struct strm_object *stream_obj, IN u8 * pbuf,
254 * index: Stream index. 254 * index: Stream index.
255 * pattr: Pointer to structure containing attributes to be 255 * pattr: Pointer to structure containing attributes to be
256 * applied to stream. Cannot be NULL. 256 * applied to stream. Cannot be NULL.
257 * phStrm: Location to store stream handle on output. 257 * strm_objct: Location to store stream handle on output.
258 * Returns: 258 * Returns:
259 * 0: Success. 259 * 0: Success.
260 * -EFAULT: Invalid hnode. 260 * -EFAULT: Invalid hnode.
@@ -264,15 +264,15 @@ extern int strm_issue(struct strm_object *stream_obj, IN u8 * pbuf,
264 * -EINVAL: Invalid index. 264 * -EINVAL: Invalid index.
265 * Requires: 265 * Requires:
266 * strm_init(void) called. 266 * strm_init(void) called.
267 * phStrm != NULL. 267 * strm_objct != NULL.
268 * pattr != NULL. 268 * pattr != NULL.
269 * Ensures: 269 * Ensures:
270 * 0: *phStrm is valid. 270 * 0: *strm_objct is valid.
271 * error: *phStrm == NULL. 271 * error: *strm_objct == NULL.
272 */ 272 */
273extern int strm_open(struct node_object *hnode, u32 dir, 273extern int strm_open(struct node_object *hnode, u32 dir,
274 u32 index, IN struct strm_attr *pattr, 274 u32 index, IN struct strm_attr *pattr,
275 OUT struct strm_object **phStrm, 275 OUT struct strm_object **strm_objct,
276 struct process_context *pr_ctxt); 276 struct process_context *pr_ctxt);
277 277
278/* 278/*