From a6bff488e7267b65d7c6b2e0d5d2dd2257e65ea4 Mon Sep 17 00:00:00 2001 From: Rene Sapiens Date: Thu, 8 Jul 2010 18:11:08 -0500 Subject: 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: ======================================== aAddr to addrs aArgs to args aSize to len baseAddress to base_address bDynamicLoad to dynamic_load bForce to force cCharSize to char_size cContentSize to content_size cCount to count cDspCharSize to dsp_char_size cIndex to index ClkId to clock_id cOrigin to origin dataBasePhys to data_base_phys dcdObjUnion to dcd_obj deviceContext to device_ctxt ======================================== Signed-off-by: Rene Sapiens Signed-off-by: Greg Kroah-Hartman --- drivers/staging/tidspbridge/include/dspbridge/cmm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'drivers/staging/tidspbridge/include/dspbridge/cmm.h') diff --git a/drivers/staging/tidspbridge/include/dspbridge/cmm.h b/drivers/staging/tidspbridge/include/dspbridge/cmm.h index 3cf93aad2da..493ff561a2b 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/cmm.h +++ b/drivers/staging/tidspbridge/include/dspbridge/cmm.h @@ -95,7 +95,7 @@ extern int cmm_create(OUT struct cmm_object **ph_cmm_mgr, * Destroy the communication memory manager object. * Parameters: * hcmm_mgr: Cmm Mgr handle. - * bForce: Force deallocation of all cmm memory immediately if set TRUE. + * force: Force deallocation of all cmm memory immediately if set TRUE. * If FALSE, and outstanding allocations will return -EPERM * status. * Returns: @@ -108,7 +108,7 @@ extern int cmm_create(OUT struct cmm_object **ph_cmm_mgr, * Ensures: * Memory resources used by Cmm Mgr are freed. */ -extern int cmm_destroy(struct cmm_object *hcmm_mgr, bool bForce); +extern int cmm_destroy(struct cmm_object *hcmm_mgr, bool force); /* * ======== cmm_exit ======== @@ -305,7 +305,7 @@ extern int cmm_xlator_create(OUT struct cmm_xlatorobject **phXlator, * Delete translator resources * Parameters: * xlator: handle to translator. - * bForce: bForce = TRUE will free XLators SM buffers/dscriptrs. + * force: force = TRUE will free XLators SM buffers/dscriptrs. * Returns: * 0: Success. * -EFAULT: Bad translator handle. @@ -316,7 +316,7 @@ extern int cmm_xlator_create(OUT struct cmm_xlatorobject **phXlator, * */ extern int cmm_xlator_delete(struct cmm_xlatorobject *xlator, - bool bForce); + bool force); /* * ======== cmm_xlator_free_buf ======== -- cgit v1.2.3