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:58 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 13:45:34 -0400
commitaa09b091267694befb9459f22bed2d6437fb59f8 (patch)
treefcc29abd8de180654505b004b4291d62cd8602d1 /drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
parent95870a88ec83be6f10854c9da3bbadf27f3c07c3 (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: ======================================== pArb to arb pbAlreadyAttached to already_attached pBaseAddr to base_addr pbHostBuf to host_buff pBufVa to buf_va pChnlInfo to channel_info pConfig to config_param pContent to content pContext to context pdcdProps to dcd_prop pDepLibUuids to dep_lib_uuids pDevNodeString to dev_node_strg pDispAttrs to disp_attrs pDsp to dsp pdwAutoStart to auto_start pdwChnl to chnl ======================================== 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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h b/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
index fc8f8d31cdf..19301b27478 100644
--- a/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
+++ b/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
@@ -560,7 +560,7 @@ typedef int(*fxn_chnl_flushio) (struct chnl_object *chnl_obj,
560 * if (pInfo != NULL). 560 * if (pInfo != NULL).
561 */ 561 */
562typedef int(*fxn_chnl_getinfo) (struct chnl_object *chnl_obj, 562typedef int(*fxn_chnl_getinfo) (struct chnl_object *chnl_obj,
563 OUT struct chnl_info *pChnlInfo); 563 OUT struct chnl_info *channel_info);
564 564
565/* 565/*
566 * ======== bridge_chnl_get_mgr_info ======== 566 * ======== bridge_chnl_get_mgr_info ========
@@ -649,7 +649,7 @@ typedef int(*fxn_chnl_registernotify)
649 * Parameters: 649 * Parameters:
650 * phDevContext: Ptr to location to store a Bridge device context. 650 * phDevContext: Ptr to location to store a Bridge device context.
651 * hdev_obj: Handle to a Device Object, created and managed by DSP API. 651 * hdev_obj: Handle to a Device Object, created and managed by DSP API.
652 * pConfig: Ptr to configuration parameters provided by the 652 * config_param: Ptr to configuration parameters provided by the
653 * Configuration Manager during device loading. 653 * Configuration Manager during device loading.
654 * pDspConfig: DSP resources, as specified in the registry key for this 654 * pDspConfig: DSP resources, as specified in the registry key for this
655 * device. 655 * device.
@@ -659,9 +659,9 @@ typedef int(*fxn_chnl_registernotify)
659 * Requires: 659 * Requires:
660 * phDevContext != NULL; 660 * phDevContext != NULL;
661 * hdev_obj != NULL; 661 * hdev_obj != NULL;
662 * pConfig != NULL; 662 * config_param != NULL;
663 * pDspConfig != NULL; 663 * pDspConfig != NULL;
664 * Fields in pConfig and pDspConfig contain valid values. 664 * Fields in config_param and pDspConfig contain valid values.
665 * Ensures: 665 * Ensures:
666 * 0: All Bridge driver specific DSP resource and other 666 * 0: All Bridge driver specific DSP resource and other
667 * board context has been allocated. 667 * board context has been allocated.
@@ -683,7 +683,7 @@ typedef int(*fxn_dev_create) (OUT struct bridge_dev_context
683 struct dev_object 683 struct dev_object
684 * hdev_obj, 684 * hdev_obj,
685 IN struct cfg_hostres 685 IN struct cfg_hostres
686 * pConfig); 686 * config_param);
687 687
688/* 688/*
689 * ======== bridge_dev_ctrl ======== 689 * ======== bridge_dev_ctrl ========