aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
diff options
context:
space:
mode:
authorRene Sapiens <rene.sapiens@ti.com>2010-07-09 22:23:57 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 13:45:34 -0400
commit95870a88ec83be6f10854c9da3bbadf27f3c07c3 (patch)
tree44ff15daf055a8600a31a9516974a61ae38432f9 /drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
parente68906924d742dfb33564d7eb4ea7db0b4e65ae4 (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: ======================================== hStrm to stream_obj iMode to io_mode irqMask to irq_mask lOffset to offset memPtr to mem_ptr moduleId to module_id msgCallback to msg_callback msgList to msg_list nArgc to num_argc nEntryStart to entry_start nMemSpace to mem_space nStatus to node_status nStrms to strms numLibs to num_libs numLockedEntries to num_locked_entries pageSize to page_sz ======================================== 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/dspdefs.h')
-rw-r--r--drivers/staging/tidspbridge/include/dspbridge/dspdefs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h b/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
index 73034c31fa2..fc8f8d31cdf 100644
--- a/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
+++ b/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
@@ -806,19 +806,19 @@ typedef int(*fxn_io_getprocload) (struct io_mgr *hio_mgr,
806 * Parameters: 806 * Parameters:
807 * phMsgMgr: Location to store msg_ctrl manager on output. 807 * phMsgMgr: Location to store msg_ctrl manager on output.
808 * hdev_obj: Handle to a device object. 808 * hdev_obj: Handle to a device object.
809 * msgCallback: Called whenever an RMS_EXIT message is received. 809 * msg_callback: Called whenever an RMS_EXIT message is received.
810 * Returns: 810 * Returns:
811 * 0: Success. 811 * 0: Success.
812 * -ENOMEM: Insufficient memory. 812 * -ENOMEM: Insufficient memory.
813 * Requires: 813 * Requires:
814 * phMsgMgr != NULL. 814 * phMsgMgr != NULL.
815 * msgCallback != NULL. 815 * msg_callback != NULL.
816 * hdev_obj != NULL. 816 * hdev_obj != NULL.
817 * Ensures: 817 * Ensures:
818 */ 818 */
819typedef int(*fxn_msg_create) 819typedef int(*fxn_msg_create)
820 (OUT struct msg_mgr **phMsgMgr, 820 (OUT struct msg_mgr **phMsgMgr,
821 struct dev_object *hdev_obj, msg_onexit msgCallback); 821 struct dev_object *hdev_obj, msg_onexit msg_callback);
822 822
823/* 823/*
824 * ======== bridge_msg_create_queue ======== 824 * ======== bridge_msg_create_queue ========
@@ -831,7 +831,7 @@ typedef int(*fxn_msg_create)
831 * phMsgQueue: Location to store msg_ctrl queue on output. 831 * phMsgQueue: Location to store msg_ctrl queue on output.
832 * msgq_id: Identifier for messages (node environment pointer). 832 * msgq_id: Identifier for messages (node environment pointer).
833 * max_msgs: Max number of simultaneous messages for the node. 833 * max_msgs: Max number of simultaneous messages for the node.
834 * h: Handle passed to hmsg_mgr->msgCallback(). 834 * h: Handle passed to hmsg_mgr->msg_callback().
835 * Returns: 835 * Returns:
836 * 0: Success. 836 * 0: Success.
837 * -ENOMEM: Insufficient memory. 837 * -ENOMEM: Insufficient memory.