Commit a5120278 authored by Rene Sapiens's avatar Rene Sapiens Committed by Greg Kroah-Hartman
Browse files

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:
========================================
pdwSize to buff_size
pdwState to board_state
pdwValue to value
pdwVersion to version
pElemExisting to elem_existing
pEntry to entry
pExists to exists
pfEnablePerf to enable_perf
pGenObj to gen_obj
phChnlMgr to channel_mgr
phChnl to chnl
phCodMgr to cod_mgr
phDCDHandle to dcd_handle
phDcdMgr to dcd_mgr
phDehMgr to deh_manager
========================================

Signed-off-by: default avatarRene Sapiens <rene.sapiens@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent aa09b091
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -380,7 +380,7 @@ int bridge_chnl_close(struct chnl_object *chnl_obj)
 *      Create a channel manager object, responsible for opening new channels
 *      and closing old ones for a given board.
 */
int bridge_chnl_create(OUT struct chnl_mgr **phChnlMgr,
int bridge_chnl_create(OUT struct chnl_mgr **channel_mgr,
			      struct dev_object *hdev_obj,
			      IN CONST struct chnl_mgrattrs *pMgrAttrs)
{
@@ -389,7 +389,7 @@ int bridge_chnl_create(OUT struct chnl_mgr **phChnlMgr,
	u8 max_channels;

	/* Check DBC requirements: */
	DBC_REQUIRE(phChnlMgr != NULL);
	DBC_REQUIRE(channel_mgr != NULL);
	DBC_REQUIRE(pMgrAttrs != NULL);
	DBC_REQUIRE(pMgrAttrs->max_channels > 0);
	DBC_REQUIRE(pMgrAttrs->max_channels <= CHNL_MAXCHANNELS);
@@ -430,10 +430,10 @@ int bridge_chnl_create(OUT struct chnl_mgr **phChnlMgr,

	if (DSP_FAILED(status)) {
		bridge_chnl_destroy(chnl_mgr_obj);
		*phChnlMgr = NULL;
		*channel_mgr = NULL;
	} else {
		/* Return channel manager object to caller... */
		*phChnlMgr = chnl_mgr_obj;
		*channel_mgr = chnl_mgr_obj;
	}
	return status;
}
@@ -774,7 +774,7 @@ int bridge_chnl_idle(struct chnl_object *chnl_obj, u32 timeout,
 *  ======== bridge_chnl_open ========
 *      Open a new half-duplex channel to the DSP board.
 */
int bridge_chnl_open(OUT struct chnl_object **phChnl,
int bridge_chnl_open(OUT struct chnl_object **chnl,
			    struct chnl_mgr *hchnl_mgr, s8 chnl_mode,
			    u32 uChnlId, CONST IN struct chnl_attr *pattrs)
{
@@ -783,10 +783,10 @@ int bridge_chnl_open(OUT struct chnl_object **phChnl,
	struct chnl_object *pchnl = NULL;
	struct sync_object *sync_event = NULL;
	/* Ensure DBC requirements: */
	DBC_REQUIRE(phChnl != NULL);
	DBC_REQUIRE(chnl != NULL);
	DBC_REQUIRE(pattrs != NULL);
	DBC_REQUIRE(hchnl_mgr != NULL);
	*phChnl = NULL;
	*chnl = NULL;
	/* Validate Args: */
	if (pattrs->uio_reqs == 0) {
		status = -EINVAL;
@@ -893,10 +893,10 @@ int bridge_chnl_open(OUT struct chnl_object **phChnl,
		spin_unlock_bh(&chnl_mgr_obj->chnl_mgr_lock);
		/* Return result... */
		pchnl->dw_state = CHNL_STATEREADY;
		*phChnl = pchnl;
		*chnl = pchnl;
	}
func_end:
	DBC_ENSURE((DSP_SUCCEEDED(status) && pchnl) || (*phChnl == NULL));
	DBC_ENSURE((DSP_SUCCEEDED(status) && pchnl) || (*chnl == NULL));
	return status;
}

+3 −3
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ static int bridge_brd_read(struct bridge_dev_context *dev_context,
static int bridge_brd_start(struct bridge_dev_context *dev_context,
				   u32 dsp_addr);
static int bridge_brd_status(struct bridge_dev_context *dev_context,
				    int *pdwState);
				    int *board_state);
static int bridge_brd_stop(struct bridge_dev_context *dev_context);
static int bridge_brd_write(struct bridge_dev_context *dev_context,
				   IN u8 *host_buff,
@@ -753,10 +753,10 @@ static int bridge_brd_delete(struct bridge_dev_context *dev_ctxt)
 *      Returns the board status.
 */
static int bridge_brd_status(struct bridge_dev_context *dev_ctxt,
				    int *pdwState)
				    int *board_state)
{
	struct bridge_dev_context *dev_context = dev_ctxt;
	*pdwState = dev_context->dw_brd_state;
	*board_state = dev_context->dw_brd_state;
	return 0;
}

+15 −15
Original line number Diff line number Diff line
@@ -58,9 +58,9 @@ extern int cfg_get_auto_start(IN struct cfg_devnode *dev_node_obj,
 *  Purpose:
 *      Retrieves the version of the PM Class Driver.
 *  Parameters:
 *      pdwVersion: Ptr to u32 to contain version number upon return.
 *      version:    Ptr to u32 to contain version number upon return.
 *  Returns:
 *      0:    Success.  pdwVersion contains Class Driver version in
 *      0:    Success.  version contains Class Driver version in
 *                  the form: 0xAABBCCDD where AABB is Major version and
 *                  CCDD is Minor.
 *      -EPERM:  Failure.
@@ -68,9 +68,9 @@ extern int cfg_get_auto_start(IN struct cfg_devnode *dev_node_obj,
 *      CFG initialized.
 *  Ensures:
 *      0:    Success.
 *      else:       *pdwVersion is NULL.
 *      else:       *version is NULL.
 */
extern int cfg_get_cd_version(OUT u32 *pdwVersion);
extern int cfg_get_cd_version(OUT u32 *version);

/*
 *  ======== cfg_get_dev_object ========
@@ -79,7 +79,7 @@ extern int cfg_get_cd_version(OUT u32 *pdwVersion);
 *  Parameters:
 *      dev_node_obj:	Platform's dev_node handle from which to retrieve
 *      		value.
 *      pdwValue:       Ptr to location to store the value.
 *      value:          Ptr to location to store the value.
 *  Returns:
 *      0:                Success.
 *      -EFAULT: dev_node_obj is invalid or phDevObject is invalid.
@@ -87,11 +87,11 @@ extern int cfg_get_cd_version(OUT u32 *pdwVersion);
 *  Requires:
 *      CFG initialized.
 *  Ensures:
 *      0:    *pdwValue is set to the retrieved u32.
 *      else:       *pdwValue is set to 0L.
 *      0:    *value is set to the retrieved u32.
 *      else:       *value is set to 0L.
 */
extern int cfg_get_dev_object(IN struct cfg_devnode *dev_node_obj,
				     OUT u32 *pdwValue);
				     OUT u32 *value);

/*
 *  ======== cfg_get_exec_file ========
@@ -120,17 +120,17 @@ extern int cfg_get_exec_file(IN struct cfg_devnode *dev_node_obj,
 *  Purpose:
 *      Retrieve the Driver Object handle From the Registry
 *  Parameters:
 *      pdwValue:   Ptr to location to store the value.
 *      value:      Ptr to location to store the value.
 *      dw_type      Type of Object to Get
 *  Returns:
 *      0:    Success.
 *  Requires:
 *      CFG initialized.
 *  Ensures:
 *      0:    *pdwValue is set to the retrieved u32(non-Zero).
 *      else:       *pdwValue is set to 0L.
 *      0:    *value is set to the retrieved u32(non-Zero).
 *      else:       *value is set to 0L.
 */
extern int cfg_get_object(OUT u32 *pdwValue, u8 dw_type);
extern int cfg_get_object(OUT u32 *value, u8 dw_type);

/*
 *  ======== cfg_get_perf_value ========
@@ -138,15 +138,15 @@ extern int cfg_get_object(OUT u32 *pdwValue, u8 dw_type);
 *      Retrieve a flag indicating whether PERF should log statistics for the
 *      PM class driver.
 *  Parameters:
 *      pfEnablePerf:   Location to store flag.  0 indicates the key was
 *      enable_perf:    Location to store flag.  0 indicates the key was
 *                      not found, or had a zero value.  A nonzero value
 *                      means the key was found and had a nonzero value.
 *  Returns:
 *  Requires:
 *      pfEnablePerf != NULL;
 *      enable_perf != NULL;
 *  Ensures:
 */
extern void cfg_get_perf_value(OUT bool *pfEnablePerf);
extern void cfg_get_perf_value(OUT bool *enable_perf);

/*
 *  ======== cfg_get_zl_file ========
+3 −3
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ extern int chnl_close(struct chnl_object *chnl_obj);
 *      Create a channel manager object, responsible for opening new channels
 *      and closing old ones for a given board.
 *  Parameters:
 *      phChnlMgr:      Location to store a channel manager object on output.
 *      channel_mgr:    Location to store a channel manager object on output.
 *      hdev_obj:     Handle to a device object.
 *      pMgrAttrs:      Channel manager attributes.
 *      pMgrAttrs->max_channels:   Max channels
@@ -70,14 +70,14 @@ extern int chnl_close(struct chnl_object *chnl_obj);
 *      -EEXIST:       Channel manager already exists for this device.
 *  Requires:
 *      chnl_init(void) called.
 *      phChnlMgr != NULL.
 *      channel_mgr != NULL.
 *      pMgrAttrs != NULL.
 *  Ensures:
 *      0:                Subsequent calls to chnl_create() for the same
 *                              board without an intervening call to
 *                              chnl_destroy() will fail.
 */
extern int chnl_create(OUT struct chnl_mgr **phChnlMgr,
extern int chnl_create(OUT struct chnl_mgr **channel_mgr,
			      struct dev_object *hdev_obj,
			      IN CONST struct chnl_mgrattrs *pMgrAttrs);

+6 −6
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ extern int dcd_auto_unregister(IN struct dcd_manager *hdcd_mgr,
 *      This function creates a DCD module manager.
 *  Parameters:
 *      pszZlDllName:   Pointer to a DLL name string.
 *      phDcdMgr:       A pointer to a DCD manager handle.
 *      dcd_mgr:        A pointer to a DCD manager handle.
 *  Returns:
 *      0:        Success.
 *      -ENOMEM:    Unable to allocate memory for DCD manager handle.
@@ -85,12 +85,12 @@ extern int dcd_auto_unregister(IN struct dcd_manager *hdcd_mgr,
 *  Requires:
 *      DCD initialized.
 *      pszZlDllName is non-NULL.
 *      phDcdMgr is non-NULL.
 *      dcd_mgr is non-NULL.
 *  Ensures:
 *      A DCD manager handle is created.
 */
extern int dcd_create_manager(IN char *pszZlDllName,
				     OUT struct dcd_manager **phDcdMgr);
				     OUT struct dcd_manager **dcd_mgr);

/*
 *  ======== dcd_destroy_manager ========
@@ -215,7 +215,7 @@ extern int dcd_get_num_dep_libs(IN struct dcd_manager *hdcd_mgr,
 *      uuid_obj:	Pointer to a dsp_uuid that represents a unique DSP/BIOS
 *                      Bridge object.
 *      pstrLibName: Buffer to hold library name.
 *      pdwSize: Contains buffer size. Set to string size on output.
 *      buff_size: Contains buffer size. Set to string size on output.
 *      phase:          Which phase to load
 *      phase_split:    Are phases in multiple libraries
 *  Returns:
@@ -226,13 +226,13 @@ extern int dcd_get_num_dep_libs(IN struct dcd_manager *hdcd_mgr,
 *      Valid hdcd_mgr.
 *      pstrLibName != NULL.
 *      uuid_obj != NULL
 *      pdwSize != NULL.
 *      buff_size != NULL.
 *  Ensures:
 */
extern int dcd_get_library_name(IN struct dcd_manager *hdcd_mgr,
				       IN struct dsp_uuid *uuid_obj,
				       IN OUT char *pstrLibName,
				       IN OUT u32 *pdwSize,
				       IN OUT u32 *buff_size,
				       IN enum nldr_phase phase,
				       OUT bool *phase_split);

Loading