diff --git a/drivers/staging/tidspbridge/core/chnl_sm.c b/drivers/staging/tidspbridge/core/chnl_sm.c index cec3bb5a5dd41e492a93222b51b38b7ebbf72494..4c61a314f91b74cba8fe771d3853553bbac9e5ad 100644 --- a/drivers/staging/tidspbridge/core/chnl_sm.c +++ b/drivers/staging/tidspbridge/core/chnl_sm.c @@ -75,7 +75,7 @@ /* ----------------------------------- Function Prototypes */ static struct lst_list *create_chirp_list(u32 uChirps); -static void free_chirp_list(struct lst_list *pList); +static void free_chirp_list(struct lst_list *lst); static struct chnl_irp *make_new_chirp(void); @@ -88,7 +88,7 @@ static int search_free_channel(struct chnl_mgr *chnl_mgr_obj, * The direction (mode) is specified in the channel object. Note the DSP * address is specified for channels opened in direct I/O mode. */ -int bridge_chnl_add_io_req(struct chnl_object *chnl_obj, void *pHostBuf, +int bridge_chnl_add_io_req(struct chnl_object *chnl_obj, void *host_buf, u32 byte_size, u32 buf_size, OPTIONAL u32 dw_dsp_addr, u32 dw_arg) { @@ -107,7 +107,7 @@ int bridge_chnl_add_io_req(struct chnl_object *chnl_obj, void *pHostBuf, is_eos = (byte_size == 0); /* Validate args */ - if (!pHostBuf || !pchnl) { + if (!host_buf || !pchnl) { status = -EFAULT; } else if (is_eos && CHNL_IS_INPUT(pchnl->chnl_mode)) { status = -EPERM; @@ -137,9 +137,9 @@ int bridge_chnl_add_io_req(struct chnl_object *chnl_obj, void *pHostBuf, if (DSP_FAILED(status)) goto func_end; - if (pchnl->chnl_type == CHNL_PCPY && pchnl->chnl_id > 1 && pHostBuf) { - if (!(pHostBuf < (void *)USERMODE_ADDR)) { - host_sys_buf = pHostBuf; + if (pchnl->chnl_type == CHNL_PCPY && pchnl->chnl_id > 1 && host_buf) { + if (!(host_buf < (void *)USERMODE_ADDR)) { + host_sys_buf = host_buf; goto func_cont; } /* if addr in user mode, then copy to kernel space */ @@ -149,7 +149,7 @@ int bridge_chnl_add_io_req(struct chnl_object *chnl_obj, void *pHostBuf, goto func_end; } if (CHNL_IS_OUTPUT(pchnl->chnl_mode)) { - status = copy_from_user(host_sys_buf, pHostBuf, + status = copy_from_user(host_sys_buf, host_buf, buf_size); if (status) { kfree(host_sys_buf); @@ -188,7 +188,7 @@ int bridge_chnl_add_io_req(struct chnl_object *chnl_obj, void *pHostBuf, if (DSP_SUCCEEDED(status)) { /* Enqueue the chirp on the chnl's IORequest queue: */ chnl_packet_obj->host_user_buf = chnl_packet_obj->host_sys_buf = - pHostBuf; + host_buf; if (pchnl->chnl_type == CHNL_PCPY && pchnl->chnl_id > 1) chnl_packet_obj->host_sys_buf = host_sys_buf; @@ -533,23 +533,23 @@ int bridge_chnl_flush_io(struct chnl_object *chnl_obj, u32 timeout) * Retrieve information related to a channel. */ int bridge_chnl_get_info(struct chnl_object *chnl_obj, - OUT struct chnl_info *pInfo) + OUT struct chnl_info *channel_info) { int status = 0; struct chnl_object *pchnl = (struct chnl_object *)chnl_obj; - if (pInfo != NULL) { + if (channel_info != NULL) { if (pchnl) { /* Return the requested information: */ - pInfo->hchnl_mgr = pchnl->chnl_mgr_obj; - pInfo->event_obj = pchnl->user_event; - pInfo->cnhl_id = pchnl->chnl_id; - pInfo->dw_mode = pchnl->chnl_mode; - pInfo->bytes_tx = pchnl->bytes_moved; - pInfo->process = pchnl->process; - pInfo->sync_event = pchnl->sync_event; - pInfo->cio_cs = pchnl->cio_cs; - pInfo->cio_reqs = pchnl->cio_reqs; - pInfo->dw_state = pchnl->dw_state; + channel_info->hchnl_mgr = pchnl->chnl_mgr_obj; + channel_info->event_obj = pchnl->user_event; + channel_info->cnhl_id = pchnl->chnl_id; + channel_info->dw_mode = pchnl->chnl_mode; + channel_info->bytes_tx = pchnl->bytes_moved; + channel_info->process = pchnl->process; + channel_info->sync_event = pchnl->sync_event; + channel_info->cio_cs = pchnl->cio_cs; + channel_info->cio_reqs = pchnl->cio_reqs; + channel_info->dw_state = pchnl->dw_state; } else { status = -EFAULT; } @@ -567,7 +567,7 @@ int bridge_chnl_get_info(struct chnl_object *chnl_obj, * Note: Ensures Channel Invariant (see notes above). */ int bridge_chnl_get_ioc(struct chnl_object *chnl_obj, u32 timeout, - OUT struct chnl_ioc *pIOC) + OUT struct chnl_ioc *chan_ioc) { int status = 0; struct chnl_object *pchnl = (struct chnl_object *)chnl_obj; @@ -580,7 +580,7 @@ int bridge_chnl_get_ioc(struct chnl_object *chnl_obj, u32 timeout, struct dev_object *dev_obj; /* Check args: */ - if (!pIOC || !pchnl) { + if (!chan_ioc || !pchnl) { status = -EFAULT; } else if (timeout == CHNL_IOCNOWAIT) { if (LST_IS_EMPTY(pchnl->pio_completions)) @@ -623,11 +623,11 @@ int bridge_chnl_get_ioc(struct chnl_object *chnl_obj, u32 timeout, spin_lock_bh(&pchnl->chnl_mgr_obj->chnl_mgr_lock); omap_mbox_disable_irq(dev_ctxt->mbox, IRQ_RX); if (dequeue_ioc) { - /* Dequeue IOC and set pIOC; */ + /* Dequeue IOC and set chan_ioc; */ DBC_ASSERT(!LST_IS_EMPTY(pchnl->pio_completions)); chnl_packet_obj = (struct chnl_irp *)lst_get_head(pchnl->pio_completions); - /* Update pIOC from channel state and chirp: */ + /* Update chan_ioc from channel state and chirp: */ if (chnl_packet_obj) { pchnl->cio_cs--; /* If this is a zero-copy channel, then set IOC's pbuf @@ -700,7 +700,7 @@ int bridge_chnl_get_ioc(struct chnl_object *chnl_obj, u32 timeout, } func_cont: /* Update User's IOC block: */ - *pIOC = ioc; + *chan_ioc = ioc; func_end: return status; } diff --git a/drivers/staging/tidspbridge/hw/hw_mmu.c b/drivers/staging/tidspbridge/hw/hw_mmu.c index 2bb64cdfc94d31c268c9258a6c5e085cdbccae23..84a6332e7388c43d1e3d546c19ecc2972c3507ce 100644 --- a/drivers/staging/tidspbridge/hw/hw_mmu.c +++ b/drivers/staging/tidspbridge/hw/hw_mmu.c @@ -127,7 +127,7 @@ static hw_status mmu_set_cam_entry(const void __iomem *base_address, * Type : const u32 * Description : Base Address of instance of MMU module * - * Identifier : physicalAddr + * Identifier : physical_addr * Type : const u32 * Description : Physical Address to which the corresponding * virtual Address shouldpoint @@ -158,7 +158,7 @@ static hw_status mmu_set_cam_entry(const void __iomem *base_address, * METHOD: : Check the Input parameters and set the RAM entry. */ static hw_status mmu_set_ram_entry(const void __iomem *base_address, - const u32 physicalAddr, + const u32 physical_addr, enum hw_endianism_t endianism, enum hw_element_size_t element_size, enum hw_mmu_mixed_size_t mixed_size); @@ -332,7 +332,7 @@ hw_status hw_mmu_tlb_flush(const void __iomem *base_address, u32 virtualAddr, } hw_status hw_mmu_tlb_add(const void __iomem *base_address, - u32 physicalAddr, + u32 physical_addr, u32 virtualAddr, u32 page_sz, u32 entry_num, @@ -385,7 +385,7 @@ hw_status hw_mmu_tlb_add(const void __iomem *base_address, /* Write the different fields of the RAM Entry Register */ /* endianism of the page,Element Size of the page (8, 16, 32, 64 bit) */ - mmu_set_ram_entry(base_address, physicalAddr, map_attrs->endianism, + mmu_set_ram_entry(base_address, physical_addr, map_attrs->endianism, map_attrs->element_size, map_attrs->mixed_size); /* Update the MMU Lock Register */ @@ -402,7 +402,7 @@ hw_status hw_mmu_tlb_add(const void __iomem *base_address, } hw_status hw_mmu_pte_set(const u32 pg_tbl_va, - u32 physicalAddr, + u32 physical_addr, u32 virtualAddr, u32 page_sz, struct hw_mmu_map_attrs_t *map_attrs) { @@ -416,7 +416,7 @@ hw_status hw_mmu_pte_set(const u32 pg_tbl_va, virtualAddr & MMU_SMALL_PAGE_MASK); pte_val = - ((physicalAddr & MMU_SMALL_PAGE_MASK) | + ((physical_addr & MMU_SMALL_PAGE_MASK) | (map_attrs->endianism << 9) | (map_attrs-> element_size << 4) | (map_attrs->mixed_size << 11) | 2); @@ -428,7 +428,7 @@ hw_status hw_mmu_pte_set(const u32 pg_tbl_va, virtualAddr & MMU_LARGE_PAGE_MASK); pte_val = - ((physicalAddr & MMU_LARGE_PAGE_MASK) | + ((physical_addr & MMU_LARGE_PAGE_MASK) | (map_attrs->endianism << 9) | (map_attrs-> element_size << 4) | (map_attrs->mixed_size << 11) | 1); @@ -439,7 +439,7 @@ hw_status hw_mmu_pte_set(const u32 pg_tbl_va, virtualAddr & MMU_SECTION_ADDR_MASK); pte_val = - ((((physicalAddr & MMU_SECTION_ADDR_MASK) | + ((((physical_addr & MMU_SECTION_ADDR_MASK) | (map_attrs->endianism << 15) | (map_attrs-> element_size << 10) | (map_attrs->mixed_size << 17)) & ~0x40000) | 0x2); @@ -451,7 +451,7 @@ hw_status hw_mmu_pte_set(const u32 pg_tbl_va, virtualAddr & MMU_SSECTION_ADDR_MASK); pte_val = - (((physicalAddr & MMU_SSECTION_ADDR_MASK) | + (((physical_addr & MMU_SSECTION_ADDR_MASK) | (map_attrs->endianism << 15) | (map_attrs-> element_size << 10) | (map_attrs->mixed_size << 17) @@ -462,7 +462,7 @@ hw_status hw_mmu_pte_set(const u32 pg_tbl_va, pte_addr = hw_mmu_pte_addr_l1(pg_tbl_va, virtualAddr & MMU_SECTION_ADDR_MASK); - pte_val = (physicalAddr & MMU_PAGE_TABLE_MASK) | 1; + pte_val = (physical_addr & MMU_PAGE_TABLE_MASK) | 1; break; default: @@ -561,7 +561,7 @@ static hw_status mmu_set_cam_entry(const void __iomem *base_address, /* mmu_set_ram_entry */ static hw_status mmu_set_ram_entry(const void __iomem *base_address, - const u32 physicalAddr, + const u32 physical_addr, enum hw_endianism_t endianism, enum hw_element_size_t element_size, enum hw_mmu_mixed_size_t mixed_size) @@ -576,7 +576,7 @@ static hw_status mmu_set_ram_entry(const void __iomem *base_address, RET_PARAM_OUT_OF_RANGE, RES_MMU_BASE + RES_INVALID_INPUT_PARAM); - mmu_ram_reg = (physicalAddr & MMU_ADDR_MASK); + mmu_ram_reg = (physical_addr & MMU_ADDR_MASK); mmu_ram_reg = (mmu_ram_reg) | ((endianism << 9) | (element_size << 7) | (mixed_size << 6)); diff --git a/drivers/staging/tidspbridge/hw/hw_mmu.h b/drivers/staging/tidspbridge/hw/hw_mmu.h index aeedbe216c8d61eea726aaa74c0e26fe6878d81f..063efbb2afaa7685d57c468ed7fb8361722961aa 100644 --- a/drivers/staging/tidspbridge/hw/hw_mmu.h +++ b/drivers/staging/tidspbridge/hw/hw_mmu.h @@ -80,7 +80,7 @@ extern hw_status hw_mmu_tlb_flush(const void __iomem *base_address, u32 virtualAddr, u32 page_sz); extern hw_status hw_mmu_tlb_add(const void __iomem *base_address, - u32 physicalAddr, + u32 physical_addr, u32 virtualAddr, u32 page_sz, u32 entry_num, @@ -89,7 +89,7 @@ extern hw_status hw_mmu_tlb_add(const void __iomem *base_address, /* For PTEs */ extern hw_status hw_mmu_pte_set(const u32 pg_tbl_va, - u32 physicalAddr, + u32 physical_addr, u32 virtualAddr, u32 page_sz, struct hw_mmu_map_attrs_t *map_attrs); diff --git a/drivers/staging/tidspbridge/include/dspbridge/cmm.h b/drivers/staging/tidspbridge/include/dspbridge/cmm.h index d36972eca3d080c35ab527146f53479ff35c42ff..22d053b3be19dcabc78ba053f25749b22468b2ca 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/cmm.h +++ b/drivers/staging/tidspbridge/include/dspbridge/cmm.h @@ -281,7 +281,7 @@ extern void *cmm_xlator_alloc_buf(struct cmm_xlatorobject *xlator, * address translation. Node messaging and streams use this to perform * inter-processor(GPP<->DSP) zero-copy data transfer. * Parameters: - * phXlator: Address to place handle to a new Xlator handle. + * xlator: Address to place handle to a new Xlator handle. * hcmm_mgr: Handle to Cmm Mgr associated with this translator. * pXlatorAttrs: Translator attributes used for the client NODE or STREAM. * Returns: @@ -289,13 +289,13 @@ extern void *cmm_xlator_alloc_buf(struct cmm_xlatorobject *xlator, * -EINVAL: Bad input Attrs. * -ENOMEM: Insufficient memory(local) for requested resources. * Requires: - * phXlator != NULL + * xlator != NULL * hcmm_mgr != NULL * pXlatorAttrs != NULL * Ensures: * */ -extern int cmm_xlator_create(OUT struct cmm_xlatorobject **phXlator, +extern int cmm_xlator_create(OUT struct cmm_xlatorobject **xlator, struct cmm_object *hcmm_mgr, struct cmm_xlatorattrs *pXlatorAttrs); diff --git a/drivers/staging/tidspbridge/include/dspbridge/cod.h b/drivers/staging/tidspbridge/include/dspbridge/cod.h index 63bb87457d2dcdef2219a6595cd9225c4c3bf50b..0cc1bd2bffd07b37a9bb1191dcd31db9b5d82fb5 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/cod.h +++ b/drivers/staging/tidspbridge/include/dspbridge/cod.h @@ -307,7 +307,7 @@ extern int cod_load_base(struct cod_manager *cod_mgr_obj, * pszCoffPath: Coff file to open. * flags: COD_NOLOAD (don't load symbols) or COD_SYMB (load * symbols). - * pLib: Handle returned that can be used in calls to cod_close + * lib_obj: Handle returned that can be used in calls to cod_close * and cod_get_section. * Returns: * S_OK: Success. @@ -321,7 +321,7 @@ extern int cod_load_base(struct cod_manager *cod_mgr_obj, */ extern int cod_open(struct cod_manager *hmgr, IN char *pszCoffPath, - u32 flags, OUT struct cod_libraryobj **pLib); + u32 flags, OUT struct cod_libraryobj **lib_obj); /* * ======== cod_open_base ======== diff --git a/drivers/staging/tidspbridge/include/dspbridge/dbll.h b/drivers/staging/tidspbridge/include/dspbridge/dbll.h index daf81052701dc28f1631a1ad64775f38708b93cc..63785558e35a00e9b39e2531de242cf9caaa299a 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/dbll.h +++ b/drivers/staging/tidspbridge/include/dspbridge/dbll.h @@ -45,7 +45,8 @@ extern int dbll_load(struct dbll_library_obj *lib, extern int dbll_load_sect(struct dbll_library_obj *lib, char *sectName, struct dbll_attrs *attrs); extern int dbll_open(struct dbll_tar_obj *target, char *file, - dbll_flags flags, struct dbll_library_obj **pLib); + dbll_flags flags, + struct dbll_library_obj **lib_obj); extern int dbll_read_sect(struct dbll_library_obj *lib, char *name, char *pbuf, u32 size); extern void dbll_set_attrs(struct dbll_tar_obj *target, diff --git a/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h b/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h index da8abf4c3d4f07c19d5efea2ff594e4d043b46c6..23eca159563ccf327c87b4ef8f3dc5f950fcc74e 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h +++ b/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h @@ -379,7 +379,7 @@ typedef int(*dbll_load_sect_fxn) (struct dbll_library_obj *lib, * target - Handle returned from dbll_create(). * file - Name of file to open. * flags - If flags & DBLL_SYMB, load symbols. - * pLib - Location to store library handle on output. + * lib_obj - Location to store library handle on output. * Returns: * 0: Success. * -ENOMEM: Memory allocation failure. @@ -389,15 +389,15 @@ typedef int(*dbll_load_sect_fxn) (struct dbll_library_obj *lib, * DBL initialized. * Valid target. * file != NULL. - * pLib != NULL. + * lib_obj != NULL. * dbll_attrs fopen function non-NULL. * Ensures: - * Success: Valid *pLib. - * Failure: *pLib == NULL. + * Success: Valid *lib_obj. + * Failure: *lib_obj == NULL. */ typedef int(*dbll_open_fxn) (struct dbll_tar_obj *target, char *file, dbll_flags flags, - struct dbll_library_obj **pLib); + struct dbll_library_obj **lib_obj); /* * ======== dbll_read_sect ======== diff --git a/drivers/staging/tidspbridge/include/dspbridge/dev.h b/drivers/staging/tidspbridge/include/dspbridge/dev.h index 68aa0b15930109eca4d2d31d1ba644f78c9c82f7..a646402fb7038a29cd03134a840495e281c9e3d7 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/dev.h +++ b/drivers/staging/tidspbridge/include/dspbridge/dev.h @@ -43,7 +43,7 @@ * arb: Handle to a Device Object. * dev_ctxt: Handle to Bridge driver defined device info. * dsp_addr: Address on DSP board (Destination). - * pHostBuf: Pointer to host buffer (Source). + * host_buf: Pointer to host buffer (Source). * ul_num_bytes: Number of bytes to transfer. * ulMemType: Memory space on DSP to which to transfer. * Returns: @@ -51,12 +51,12 @@ * arb is invalid. * Requires: * DEV Initialized. - * pHostBuf != NULL + * host_buf != NULL * Ensures: */ extern u32 dev_brd_write_fxn(void *arb, u32 ulDspAddr, - void *pHostBuf, u32 ul_num_bytes, u32 mem_space); + void *host_buf, u32 ul_num_bytes, u32 mem_space); /* * ======== dev_create_device ======== @@ -68,7 +68,7 @@ extern u32 dev_brd_write_fxn(void *arb, * driver_file_name: Name of Bridge driver PE DLL file to load. If the * absolute path is not provided, the file is loaded * through 'Bridge's module search path. - * pHostConfig: Host configuration information, to be passed down + * host_config: Host configuration information, to be passed down * to the Bridge driver when bridge_dev_create() is called. * pDspConfig: DSP resources, to be passed down to the Bridge driver * when bridge_dev_create() is called. @@ -82,7 +82,7 @@ extern u32 dev_brd_write_fxn(void *arb, * DEV Initialized. * device_obj != NULL. * driver_file_name != NULL. - * pHostConfig != NULL. + * host_config != NULL. * pDspConfig != NULL. * Ensures: * 0: *device_obj will contain handle to the new device object. @@ -103,7 +103,7 @@ extern int dev_create_device(OUT struct dev_object * driver_file_name: Name of Bridge driver PE DLL file to load. If the * absolute path is not provided, the file is loaded * through 'Bridge's module search path. - * pHostConfig: Host configuration information, to be passed down + * host_config: Host configuration information, to be passed down * to the Bridge driver when bridge_dev_create() is called. * pDspConfig: DSP resources, to be passed down to the Bridge driver * when bridge_dev_create() is called. @@ -117,7 +117,7 @@ extern int dev_create_device(OUT struct dev_object * DEV Initialized. * device_obj != NULL. * driver_file_name != NULL. - * pHostConfig != NULL. + * host_config != NULL. * pDspConfig != NULL. * Ensures: * 0: *device_obj will contain handle to the new device object. @@ -128,7 +128,7 @@ extern int dev_create_iva_device(OUT struct dev_object **device_obj, IN CONST char *driver_file_name, IN CONST struct cfg_hostres - *pHostConfig, + *host_config, struct cfg_devnode *dev_node_obj); /* @@ -439,7 +439,7 @@ extern struct dev_object *dev_get_next(struct dev_object * Requires: * DEV Initialized. * Valid hdev_obj. - * phNodeMgr != NULL. + * node_man != NULL. * Ensures: */ extern void dev_get_msg_mgr(struct dev_object *hdev_obj, @@ -452,21 +452,21 @@ extern void dev_get_msg_mgr(struct dev_object *hdev_obj, * accessor function * Parameters: * hdev_obj: Handle to the Dev Object - * phNodeMgr: Location where Handle to the Node Manager will be + * node_man: Location where Handle to the Node Manager will be * returned.. * Returns: * 0: Success * -EFAULT: Invalid Dev Object handle. * Requires: * DEV Initialized. - * phNodeMgr is not null + * node_man is not null * Ensures: - * 0: *phNodeMgr contains a handle to a Node manager object. - * else: *phNodeMgr is NULL. + * 0: *node_man contains a handle to a Node manager object. + * else: *node_man is NULL. */ extern int dev_get_node_manager(struct dev_object *hdev_obj, - OUT struct node_mgr **phNodeMgr); + OUT struct node_mgr **node_man); /* * ======== dev_get_symbol ======== diff --git a/drivers/staging/tidspbridge/include/dspbridge/dspchnl.h b/drivers/staging/tidspbridge/include/dspbridge/dspchnl.h index c0092040b0dadcab2454f615c6792e749b1bc33a..a4e0c849cd56f3e383d9c9c215265685272d40d4 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/dspchnl.h +++ b/drivers/staging/tidspbridge/include/dspbridge/dspchnl.h @@ -41,12 +41,12 @@ extern int bridge_chnl_open(OUT struct chnl_object **chnl, extern int bridge_chnl_close(struct chnl_object *chnl_obj); extern int bridge_chnl_add_io_req(struct chnl_object *chnl_obj, - void *pHostBuf, + void *host_buf, u32 byte_size, u32 buf_size, OPTIONAL u32 dw_dsp_addr, u32 dw_arg); extern int bridge_chnl_get_ioc(struct chnl_object *chnl_obj, - u32 timeout, OUT struct chnl_ioc *pIOC); + u32 timeout, OUT struct chnl_ioc *chan_ioc); extern int bridge_chnl_cancel_io(struct chnl_object *chnl_obj); @@ -54,7 +54,7 @@ extern int bridge_chnl_flush_io(struct chnl_object *chnl_obj, u32 timeout); extern int bridge_chnl_get_info(struct chnl_object *chnl_obj, - OUT struct chnl_info *pInfo); + OUT struct chnl_info *channel_info); extern int bridge_chnl_get_mgr_info(struct chnl_mgr *hchnl_mgr, u32 uChnlID, OUT struct chnl_mgrinfo diff --git a/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h b/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h index 42930ccf6c381170b93fdcbf270b88319d7598f4..e3c72320693608bcebbe6fbf950a08f5d60e780d 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h +++ b/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h @@ -143,7 +143,7 @@ typedef int(*fxn_brd_memcopy) (struct bridge_dev_context * Parameters: * dev_ctxt: Handle to Bridge driver defined device info. * dsp_addr: Address on DSP board (Destination). - * pHostBuf: Pointer to host buffer (Source). + * host_buf: Pointer to host buffer (Source). * ul_num_bytes: Number of bytes to transfer. * ulMemType: Memory space on DSP to which to transfer. * Returns: @@ -152,12 +152,12 @@ typedef int(*fxn_brd_memcopy) (struct bridge_dev_context * -EPERM: Other, unspecified error. * Requires: * dev_ctxt != NULL; - * pHostBuf != NULL. + * host_buf != NULL. * Ensures: */ typedef int(*fxn_brd_memwrite) (struct bridge_dev_context * dev_ctxt, - IN u8 *pHostBuf, + IN u8 *host_buf, u32 dsp_addr, u32 ul_num_bytes, u32 ulMemType); @@ -248,7 +248,7 @@ typedef int(*fxn_brd_status) (struct bridge_dev_context *dev_ctxt, * buffer. * Parameters: * dev_ctxt: Handle to Bridge driver defined device info. - * pHostBuf: Pointer to host buffer (Destination). + * host_buf: Pointer to host buffer (Destination). * dsp_addr: Address on DSP board (Source). * ul_num_bytes: Number of bytes to transfer. * ulMemType: Memory space on DSP from which to transfer. @@ -258,12 +258,12 @@ typedef int(*fxn_brd_status) (struct bridge_dev_context *dev_ctxt, * -EPERM: Other, unspecified error. * Requires: * dev_ctxt != NULL; - * pHostBuf != NULL. + * host_buf != NULL. * Ensures: - * Will not write more than ul_num_bytes bytes into pHostBuf. + * Will not write more than ul_num_bytes bytes into host_buf. */ typedef int(*fxn_brd_read) (struct bridge_dev_context *dev_ctxt, - OUT u8 *pHostBuf, + OUT u8 *host_buf, u32 dsp_addr, u32 ul_num_bytes, u32 ulMemType); @@ -275,7 +275,7 @@ typedef int(*fxn_brd_read) (struct bridge_dev_context *dev_ctxt, * Parameters: * dev_ctxt: Handle to Bridge driver defined device info. * dsp_addr: Address on DSP board (Destination). - * pHostBuf: Pointer to host buffer (Source). + * host_buf: Pointer to host buffer (Source). * ul_num_bytes: Number of bytes to transfer. * ulMemType: Memory space on DSP to which to transfer. * Returns: @@ -284,11 +284,11 @@ typedef int(*fxn_brd_read) (struct bridge_dev_context *dev_ctxt, * -EPERM: Other, unspecified error. * Requires: * dev_ctxt != NULL; - * pHostBuf != NULL. + * host_buf != NULL. * Ensures: */ typedef int(*fxn_brd_write) (struct bridge_dev_context *dev_ctxt, - IN u8 *pHostBuf, + IN u8 *host_buf, u32 dsp_addr, u32 ul_num_bytes, u32 ulMemType); @@ -442,7 +442,7 @@ typedef int(*fxn_chnl_close) (struct chnl_object *chnl_obj); * address is specified for channels opened in direct I/O mode. * Parameters: * chnl_obj: Channel object handle. - * pHostBuf: Host buffer address source. + * host_buf: Host buffer address source. * byte_size: Number of PC bytes to transfer. A zero value indicates * that this buffer is the last in the output channel. * A zero value is invalid for an input channel. @@ -451,7 +451,7 @@ typedef int(*fxn_chnl_close) (struct chnl_object *chnl_obj); * dw_arg: A user argument that travels with the buffer. * Returns: * 0: Success; - * -EFAULT: Invalid chnl_obj or pHostBuf. + * -EFAULT: Invalid chnl_obj or host_buf. * -EPERM: User cannot mark EOS on an input channel. * -ECANCELED: I/O has been cancelled on this channel. No further * I/O is allowed. @@ -472,7 +472,7 @@ typedef int(*fxn_chnl_close) (struct chnl_object *chnl_obj); */ typedef int(*fxn_chnl_addioreq) (struct chnl_object * chnl_obj, - void *pHostBuf, + void *host_buf, u32 byte_size, u32 buf_size, OPTIONAL u32 dw_dsp_addr, u32 dw_arg); @@ -486,12 +486,12 @@ typedef int(*fxn_chnl_addioreq) (struct chnl_object * chnl_obj: Channel object handle. * timeout: A value of CHNL_IOCNOWAIT will simply dequeue the * first available IOC. - * pIOC: On output, contains host buffer address, bytes + * chan_ioc: On output, contains host buffer address, bytes * transferred, and status of I/O completion. - * pIOC->status: See chnldefs.h. + * chan_ioc->status: See chnldefs.h. * Returns: * 0: Success. - * -EFAULT: Invalid chnl_obj or pIOC. + * -EFAULT: Invalid chnl_obj or chan_ioc. * -EREMOTEIO: CHNL_IOCNOWAIT was specified as the timeout parameter * yet no I/O completions were queued. * Requires: @@ -503,7 +503,7 @@ typedef int(*fxn_chnl_addioreq) (struct chnl_object */ typedef int(*fxn_chnl_getioc) (struct chnl_object *chnl_obj, u32 timeout, - OUT struct chnl_ioc *pIOC); + OUT struct chnl_ioc *chan_ioc); /* * ======== bridge_chnl_cancel_io ======== @@ -551,14 +551,14 @@ typedef int(*fxn_chnl_flushio) (struct chnl_object *chnl_obj, * Retrieve information related to a channel. * Parameters: * chnl_obj: Handle to a valid channel object, or NULL. - * pInfo: Location to store channel info. + * channel_info: Location to store channel info. * Returns: * 0: Success; - * -EFAULT: Invalid chnl_obj or pInfo. + * -EFAULT: Invalid chnl_obj or channel_info. * Requires: * Ensures: - * 0: pInfo points to a filled in chnl_info struct, - * if (pInfo != NULL). + * 0: channel_info points to a filled in chnl_info struct, + * if (channel_info != NULL). */ typedef int(*fxn_chnl_getinfo) (struct chnl_object *chnl_obj, OUT struct chnl_info *channel_info); diff --git a/drivers/staging/tidspbridge/include/dspbridge/list.h b/drivers/staging/tidspbridge/include/dspbridge/list.h index 2cf885d7a994218d24bd5f2e63a24945fc1a208d..6837b614073a828cac0626d5dd8bdc565503c5f5 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/list.h +++ b/drivers/staging/tidspbridge/include/dspbridge/list.h @@ -35,18 +35,18 @@ struct lst_list { * Returns a pointer to the first element of the list, or NULL if the list * is empty. * Parameters: - * pList: Pointer to list control structure. + * lst: Pointer to list control structure. * Returns: * Pointer to first list element, or NULL. * Requires: * - LST initialized. - * - pList != NULL. + * - lst != NULL. * Ensures: */ -static inline struct list_head *lst_first(struct lst_list *pList) +static inline struct list_head *lst_first(struct lst_list *lst) { - if (pList && !list_empty(&pList->head)) - return pList->head.next; + if (lst && !list_empty(&lst->head)) + return lst->head.next; return NULL; } @@ -64,30 +64,30 @@ static inline struct list_head *lst_first(struct lst_list *pList) * element. So the next element after the head becomes the new head of * the list. * Parameters: - * pList: Pointer to list control structure of list whose head + * lst: Pointer to list control structure of list whose head * element is to be removed * Returns: * Pointer to element that was at the head of the list (success) * NULL No elements in list * Requires: * - LST initialized. - * - pList != NULL. + * - lst != NULL. * Ensures: * Notes: * Because the tail of the list points forward (its "next" pointer) to * the head of the list, and the head of the list points backward (its * "prev" pointer) to the tail of the list, this list is circular. */ -static inline struct list_head *lst_get_head(struct lst_list *pList) +static inline struct list_head *lst_get_head(struct lst_list *lst) { struct list_head *elem_list; - if (!pList || list_empty(&pList->head)) + if (!lst || list_empty(&lst->head)) return NULL; - elem_list = pList->head.next; - pList->head.next = elem_list->next; - elem_list->next->prev = &pList->head; + elem_list = lst->head.next; + lst->head.next = elem_list->next; + elem_list->next->prev = &lst->head; return elem_list; } @@ -121,22 +121,22 @@ static inline void lst_init_elem(struct list_head *elem_list) * Purpose: * Insert the element before the existing element. * Parameters: - * pList: Pointer to list control structure. + * lst: Pointer to list control structure. * elem_list: Pointer to element in list to insert. * elem_existing: Pointer to existing list element. * Returns: * Requires: * - LST initialized. - * - pList != NULL. + * - lst != NULL. * - elem_list != NULL. * - elem_existing != NULL. * Ensures: */ -static inline void lst_insert_before(struct lst_list *pList, +static inline void lst_insert_before(struct lst_list *lst, struct list_head *elem_list, struct list_head *elem_existing) { - if (pList && elem_list && elem_existing) + if (lst && elem_list && elem_existing) list_add_tail(elem_list, elem_existing); } @@ -146,21 +146,21 @@ static inline void lst_insert_before(struct lst_list *pList, * Returns a pointer to the next element of the list, or NULL if the next * element is the head of the list or the list is empty. * Parameters: - * pList: Pointer to list control structure. + * lst: Pointer to list control structure. * cur_elem: Pointer to element in list to remove. * Returns: * Pointer to list element, or NULL. * Requires: * - LST initialized. - * - pList != NULL. + * - lst != NULL. * - cur_elem != NULL. * Ensures: */ -static inline struct list_head *lst_next(struct lst_list *pList, +static inline struct list_head *lst_next(struct lst_list *lst, struct list_head *cur_elem) { - if (pList && !list_empty(&pList->head) && cur_elem && - (cur_elem->next != &pList->head)) + if (lst && !list_empty(&lst->head) && cur_elem && + (cur_elem->next != &lst->head)) return cur_elem->next; return NULL; } @@ -179,13 +179,13 @@ static inline struct list_head *lst_next(struct lst_list *pList, * Sets new element's next pointer to the address of the head element. * Sets head's prev pointer to the address of the new element. * Parameters: - * pList: Pointer to list control structure to which *elem_list will be + * lst: Pointer to list control structure to which *elem_list will be * added * elem_list: Pointer to list element to be added * Returns: * Void * Requires: - * *elem_list and *pList must both exist. + * *elem_list and *lst must both exist. * LST initialized. * Ensures: * Notes: @@ -193,11 +193,11 @@ static inline struct list_head *lst_next(struct lst_list *pList, * tail's "next" pointer points at the head of the list, and the head's * "prev" pointer points at the tail of the list), the list is circular. */ -static inline void lst_put_tail(struct lst_list *pList, +static inline void lst_put_tail(struct lst_list *lst, struct list_head *elem_list) { - if (pList && elem_list) - list_add_tail(elem_list, &pList->head); + if (lst && elem_list) + list_add_tail(elem_list, &lst->head); } /* @@ -206,19 +206,19 @@ static inline void lst_put_tail(struct lst_list *pList, * Removes (unlinks) the given element from the list, if the list is not * empty. Does not free the list element. * Parameters: - * pList: Pointer to list control structure. + * lst: Pointer to list control structure. * cur_elem: Pointer to element in list to remove. * Returns: * Requires: * - LST initialized. - * - pList != NULL. + * - lst != NULL. * - cur_elem != NULL. * Ensures: */ -static inline void lst_remove_elem(struct lst_list *pList, +static inline void lst_remove_elem(struct lst_list *lst, struct list_head *cur_elem) { - if (pList && !list_empty(&pList->head) && cur_elem) + if (lst && !list_empty(&lst->head) && cur_elem) list_del_init(cur_elem); } diff --git a/drivers/staging/tidspbridge/include/dspbridge/nldr.h b/drivers/staging/tidspbridge/include/dspbridge/nldr.h index 3482fe3d521fb2a720e5df103f9ad556a1bf2363..b2bfb5eb11ef492d848cba3e1ca2f373ab2c98a1 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/nldr.h +++ b/drivers/staging/tidspbridge/include/dspbridge/nldr.h @@ -31,7 +31,7 @@ extern int nldr_allocate(struct nldr_object *nldr_obj, OUT struct nldr_nodeobject **nldr_nodeobj, IN bool *pf_phase_split); -extern int nldr_create(OUT struct nldr_object **phNldr, +extern int nldr_create(OUT struct nldr_object **nldr, struct dev_object *hdev_obj, IN CONST struct nldr_attrs *pattrs); @@ -42,7 +42,7 @@ extern int nldr_get_fxn_addr(struct nldr_nodeobject *nldr_node_obj, char *pstrFxn, u32 * pulAddr); extern int nldr_get_rmm_manager(struct nldr_object *nldr, - OUT struct rmm_target_obj **phRmmMgr); + OUT struct rmm_target_obj **rmm_mgr); extern bool nldr_init(void); extern int nldr_load(struct nldr_nodeobject *nldr_node_obj, diff --git a/drivers/staging/tidspbridge/include/dspbridge/nldrdefs.h b/drivers/staging/tidspbridge/include/dspbridge/nldrdefs.h index 17c5d70f0012715c0eb7b94a3f8a7d2a0af7ed3c..e15ef678981e07a409d2e6e214bf07a21b380343 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/nldrdefs.h +++ b/drivers/staging/tidspbridge/include/dspbridge/nldrdefs.h @@ -141,7 +141,7 @@ typedef int(*nldr_allocatefxn) (struct nldr_object *nldr_obj, * create, delete, and execute phase functions of nodes on the DSP target. * * Parameters: - * phNldr: Location to store loader handle on output. + * nldr: Location to store loader handle on output. * hdev_obj: Device for this processor. * pattrs: Loader attributes. * Returns: @@ -149,14 +149,14 @@ typedef int(*nldr_allocatefxn) (struct nldr_object *nldr_obj, * -ENOMEM: Insufficient memory for requested resources. * Requires: * nldr_init(void) called. - * phNldr != NULL. + * nldr != NULL. * hdev_obj != NULL. * pattrs != NULL. * Ensures: - * 0: Valid *phNldr. - * error: *phNldr == NULL. + * 0: Valid *nldr. + * error: *nldr == NULL. */ -typedef int(*nldr_createfxn) (OUT struct nldr_object **phNldr, +typedef int(*nldr_createfxn) (OUT struct nldr_object **nldr, struct dev_object *hdev_obj, IN CONST struct nldr_attrs *pattrs); diff --git a/drivers/staging/tidspbridge/include/dspbridge/node.h b/drivers/staging/tidspbridge/include/dspbridge/node.h index 9dfa3a8ac8c6edecf1c394e7aed5674bbd8dd12a..70f3e8988e1a40e20f32aceda2cb576ba5e2eea8 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/node.h +++ b/drivers/staging/tidspbridge/include/dspbridge/node.h @@ -217,7 +217,7 @@ extern int node_create(struct node_object *hnode); * Each DEV object should have exactly one NODE Manager object. * * Parameters: - * phNodeMgr: Location to store node manager handle on output. + * node_man: Location to store node manager handle on output. * hdev_obj: Device for this processor. * Returns: * 0: Success; @@ -225,13 +225,13 @@ extern int node_create(struct node_object *hnode); * -EPERM: General failure. * Requires: * node_init(void) called. - * phNodeMgr != NULL. + * node_man != NULL. * hdev_obj != NULL. * Ensures: - * 0: Valide *phNodeMgr. - * error: *phNodeMgr == NULL. + * 0: Valide *node_man. + * error: *node_man == NULL. */ -extern int node_create_mgr(OUT struct node_mgr **phNodeMgr, +extern int node_create_mgr(OUT struct node_mgr **node_man, struct dev_object *hdev_obj); /* @@ -392,14 +392,14 @@ extern int node_get_message(struct node_object *hnode, * Retrieve the Nldr manager * Parameters: * hnode_mgr: Node Manager - * phNldrObj: Pointer to a Nldr manager handle + * nldr_ovlyobj: Pointer to a Nldr manager handle * Returns: * 0: Success. * -EFAULT: Invalid hnode. * Ensures: */ extern int node_get_nldr_obj(struct node_mgr *hnode_mgr, - OUT struct nldr_object **phNldrObj); + OUT struct nldr_object **nldr_ovlyobj); /* * ======== node_init ======== diff --git a/drivers/staging/tidspbridge/include/dspbridge/nodepriv.h b/drivers/staging/tidspbridge/include/dspbridge/nodepriv.h index 42e1a9436172075acf28641433d72b7c7c2d914f..0dc6dc7f43cb802a0ac055cd6eecf3aa3f782fd1 100644 --- a/drivers/staging/tidspbridge/include/dspbridge/nodepriv.h +++ b/drivers/staging/tidspbridge/include/dspbridge/nodepriv.h @@ -110,16 +110,16 @@ extern int node_get_channel_id(struct node_object *hnode, * Get the STRM manager for a node. * Parameters: * hnode: Node allocated with node_allocate(). - * phStrmMgr: Location to store STRM manager on output. + * strm_man: Location to store STRM manager on output. * Returns: * 0: Success. * -EFAULT: Invalid hnode. * Requires: - * phStrmMgr != NULL. + * strm_man != NULL. * Ensures: */ extern int node_get_strm_mgr(struct node_object *hnode, - struct strm_mgr **phStrmMgr); + struct strm_mgr **strm_man); /* * ======== node_get_timeout ======== diff --git a/drivers/staging/tidspbridge/include/dspbridge/strm.h b/drivers/staging/tidspbridge/include/dspbridge/strm.h index c4a4d652a64d96cb1321af6d5c477470035323dc..6572442f6da41fd3a26421508ccec764ebbf5f9f 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, * Create a STRM manager object. This object holds information about the * device needed to open streams. * Parameters: - * phStrmMgr: Location to store handle to STRM manager object on + * strm_man: Location to store handle to STRM manager object on * output. * dev_obj: Device for this processor. * Returns: @@ -84,13 +84,13 @@ extern int strm_close(struct strm_object *stream_obj, * -EPERM: General failure. * Requires: * strm_init(void) called. - * phStrmMgr != NULL. + * strm_man != NULL. * dev_obj != NULL. * Ensures: - * 0: Valid *phStrmMgr. - * error: *phStrmMgr == NULL. + * 0: Valid *strm_man. + * error: *strm_man == NULL. */ -extern int strm_create(OUT struct strm_mgr **phStrmMgr, +extern int strm_create(OUT struct strm_mgr **strm_man, struct dev_object *dev_obj); /* @@ -254,7 +254,7 @@ extern int strm_issue(struct strm_object *stream_obj, IN u8 * pbuf, * index: Stream index. * pattr: Pointer to structure containing attributes to be * applied to stream. Cannot be NULL. - * phStrm: Location to store stream handle on output. + * strm_objct: Location to store stream handle on output. * Returns: * 0: Success. * -EFAULT: Invalid hnode. @@ -264,15 +264,15 @@ extern int strm_issue(struct strm_object *stream_obj, IN u8 * pbuf, * -EINVAL: Invalid index. * Requires: * strm_init(void) called. - * phStrm != NULL. + * strm_objct != NULL. * pattr != NULL. * Ensures: - * 0: *phStrm is valid. - * error: *phStrm == NULL. + * 0: *strm_objct is valid. + * error: *strm_objct == NULL. */ extern int strm_open(struct node_object *hnode, u32 dir, u32 index, IN struct strm_attr *pattr, - OUT struct strm_object **phStrm, + OUT struct strm_object **strm_objct, struct process_context *pr_ctxt); /* diff --git a/drivers/staging/tidspbridge/pmgr/cmm.c b/drivers/staging/tidspbridge/pmgr/cmm.c index ff1621c2a0b1b9166637704f45f9eae114937cb1..ffe724ad68c5458978337b5cbbd40f00d07bd5bf 100644 --- a/drivers/staging/tidspbridge/pmgr/cmm.c +++ b/drivers/staging/tidspbridge/pmgr/cmm.c @@ -954,7 +954,7 @@ static struct cmm_allocator *get_allocator(struct cmm_object *cmm_mgr_obj, * Purpose: * Create an address translator object. */ -int cmm_xlator_create(OUT struct cmm_xlatorobject **phXlator, +int cmm_xlator_create(OUT struct cmm_xlatorobject **xlator, struct cmm_object *hcmm_mgr, struct cmm_xlatorattrs *pXlatorAttrs) { @@ -962,10 +962,10 @@ int cmm_xlator_create(OUT struct cmm_xlatorobject **phXlator, int status = 0; DBC_REQUIRE(refs > 0); - DBC_REQUIRE(phXlator != NULL); + DBC_REQUIRE(xlator != NULL); DBC_REQUIRE(hcmm_mgr != NULL); - *phXlator = NULL; + *xlator = NULL; if (pXlatorAttrs == NULL) pXlatorAttrs = &cmm_dfltxlatorattrs; /* set defaults */ @@ -978,7 +978,7 @@ int cmm_xlator_create(OUT struct cmm_xlatorobject **phXlator, status = -ENOMEM; } if (DSP_SUCCEEDED(status)) - *phXlator = (struct cmm_xlatorobject *)xlator_object; + *xlator = (struct cmm_xlatorobject *)xlator_object; return status; } diff --git a/drivers/staging/tidspbridge/pmgr/cod.c b/drivers/staging/tidspbridge/pmgr/cod.c index e8d5b7e7c328ef1ef2ab9676fd232619232c7368..ab54388c6c69a941383c1d0e59d5892186d4d702 100644 --- a/drivers/staging/tidspbridge/pmgr/cod.c +++ b/drivers/staging/tidspbridge/pmgr/cod.c @@ -551,7 +551,7 @@ int cod_load_base(struct cod_manager *hmgr, u32 num_argc, char *args[], * Open library for reading sections. */ int cod_open(struct cod_manager *hmgr, IN char *pszCoffPath, - u32 flags, struct cod_libraryobj **pLib) + u32 flags, struct cod_libraryobj **lib_obj) { int status = 0; struct cod_libraryobj *lib = NULL; @@ -560,9 +560,9 @@ int cod_open(struct cod_manager *hmgr, IN char *pszCoffPath, DBC_REQUIRE(IS_VALID(hmgr)); DBC_REQUIRE(pszCoffPath != NULL); DBC_REQUIRE(flags == COD_NOLOAD || flags == COD_SYMB); - DBC_REQUIRE(pLib != NULL); + DBC_REQUIRE(lib_obj != NULL); - *pLib = NULL; + *lib_obj = NULL; lib = kzalloc(sizeof(struct cod_libraryobj), GFP_KERNEL); if (lib == NULL) @@ -573,7 +573,7 @@ int cod_open(struct cod_manager *hmgr, IN char *pszCoffPath, status = hmgr->fxns.open_fxn(hmgr->target, pszCoffPath, flags, &lib->dbll_lib); if (DSP_SUCCEEDED(status)) - *pLib = lib; + *lib_obj = lib; } if (DSP_FAILED(status)) diff --git a/drivers/staging/tidspbridge/pmgr/dbll.c b/drivers/staging/tidspbridge/pmgr/dbll.c index 530191a9a7c941be374f2ba60b3e243d7c6c4052..45133e099272f219ba4e1403255d78f20fd6c36d 100644 --- a/drivers/staging/tidspbridge/pmgr/dbll.c +++ b/drivers/staging/tidspbridge/pmgr/dbll.c @@ -585,7 +585,7 @@ int dbll_load_sect(struct dbll_library_obj *zl_lib, char *sectName, * ======== dbll_open ======== */ int dbll_open(struct dbll_tar_obj *target, char *file, dbll_flags flags, - struct dbll_library_obj **pLib) + struct dbll_library_obj **lib_obj) { struct dbll_tar_obj *zl_target = (struct dbll_tar_obj *)target; struct dbll_library_obj *zl_lib = NULL; @@ -596,7 +596,7 @@ int dbll_open(struct dbll_tar_obj *target, char *file, dbll_flags flags, DBC_REQUIRE(zl_target); DBC_REQUIRE(zl_target->attrs.fopen != NULL); DBC_REQUIRE(file != NULL); - DBC_REQUIRE(pLib != NULL); + DBC_REQUIRE(lib_obj != NULL); zl_lib = zl_target->head; while (zl_lib != NULL) { @@ -707,18 +707,18 @@ int dbll_open(struct dbll_tar_obj *target, char *file, dbll_flags flags, zl_lib->next = zl_target->head; zl_target->head = zl_lib; } - *pLib = (struct dbll_library_obj *)zl_lib; + *lib_obj = (struct dbll_library_obj *)zl_lib; } else { - *pLib = NULL; + *lib_obj = NULL; if (zl_lib != NULL) dbll_close((struct dbll_library_obj *)zl_lib); } - DBC_ENSURE((DSP_SUCCEEDED(status) && (zl_lib->open_ref > 0) && *pLib) - || (DSP_FAILED(status) && *pLib == NULL)); + DBC_ENSURE((DSP_SUCCEEDED(status) && (zl_lib->open_ref > 0) && *lib_obj) + || (DSP_FAILED(status) && *lib_obj == NULL)); - dev_dbg(bridge, "%s: target: %p file: %s pLib: %p, status 0x%x\n", - __func__, target, file, pLib, status); + dev_dbg(bridge, "%s: target: %p file: %s lib_obj: %p, status 0x%x\n", + __func__, target, file, lib_obj, status); return status; } diff --git a/drivers/staging/tidspbridge/pmgr/dev.c b/drivers/staging/tidspbridge/pmgr/dev.c index f93d096ddcf65bb4253ab237c01ec6764f0f954d..50fedccc964f442f74cbac8d563b9e6ca546b072 100644 --- a/drivers/staging/tidspbridge/pmgr/dev.c +++ b/drivers/staging/tidspbridge/pmgr/dev.c @@ -100,7 +100,7 @@ static void store_interface_fxns(struct bridge_drv_interface *drv_fxns, * is passed a handle to a DEV_hObject, then calls the * device's bridge_brd_write() function. */ -u32 dev_brd_write_fxn(void *arb, u32 ulDspAddr, void *pHostBuf, +u32 dev_brd_write_fxn(void *arb, u32 ulDspAddr, void *host_buf, u32 ul_num_bytes, u32 mem_space) { struct dev_object *dev_obj = (struct dev_object *)arb; @@ -108,12 +108,12 @@ u32 dev_brd_write_fxn(void *arb, u32 ulDspAddr, void *pHostBuf, int status; DBC_REQUIRE(refs > 0); - DBC_REQUIRE(pHostBuf != NULL); /* Required of BrdWrite(). */ + DBC_REQUIRE(host_buf != NULL); /* Required of BrdWrite(). */ if (dev_obj) { /* Require of BrdWrite() */ DBC_ASSERT(dev_obj->hbridge_context != NULL); status = (*dev_obj->bridge_interface.pfn_brd_write) ( - dev_obj->hbridge_context, pHostBuf, + dev_obj->hbridge_context, host_buf, ulDspAddr, ul_num_bytes, mem_space); /* Special case of getting the address only */ if (ul_num_bytes == 0) @@ -667,23 +667,23 @@ void dev_get_msg_mgr(struct dev_object *hdev_obj, OUT struct msg_mgr **msg_man) * Retrieve the Node Manager Handle */ int dev_get_node_manager(struct dev_object *hdev_obj, - OUT struct node_mgr **phNodeMgr) + OUT struct node_mgr **node_man) { int status = 0; struct dev_object *dev_obj = hdev_obj; DBC_REQUIRE(refs > 0); - DBC_REQUIRE(phNodeMgr != NULL); + DBC_REQUIRE(node_man != NULL); if (hdev_obj) { - *phNodeMgr = dev_obj->hnode_mgr; + *node_man = dev_obj->hnode_mgr; } else { - *phNodeMgr = NULL; + *node_man = NULL; status = -EFAULT; } - DBC_ENSURE(DSP_SUCCEEDED(status) || ((phNodeMgr != NULL) && - (*phNodeMgr == NULL))); + DBC_ENSURE(DSP_SUCCEEDED(status) || ((node_man != NULL) && + (*node_man == NULL))); return status; } diff --git a/drivers/staging/tidspbridge/rmgr/nldr.c b/drivers/staging/tidspbridge/rmgr/nldr.c index 612930647c6b27234385f100a6ad065dbdbcd457..f385cbce7c32b254442fbad966733e3735f4c122 100644 --- a/drivers/staging/tidspbridge/rmgr/nldr.c +++ b/drivers/staging/tidspbridge/rmgr/nldr.c @@ -288,7 +288,7 @@ static int add_ovly_info(void *handle, struct dbll_sect_info *sect_info, static int add_ovly_node(struct dsp_uuid *uuid_obj, enum dsp_dcdobjtype obj_type, IN void *handle); static int add_ovly_sect(struct nldr_object *nldr_obj, - struct ovly_sect **pList, + struct ovly_sect **lst, struct dbll_sect_info *pSectInfo, bool *exists, u32 addr, u32 bytes); static s32 fake_ovly_write(void *handle, u32 dsp_address, void *buf, u32 bytes, @@ -424,7 +424,7 @@ int nldr_allocate(struct nldr_object *nldr_obj, void *priv_ref, /* * ======== nldr_create ======== */ -int nldr_create(OUT struct nldr_object **phNldr, +int nldr_create(OUT struct nldr_object **nldr, struct dev_object *hdev_obj, IN CONST struct nldr_attrs *pattrs) { @@ -444,7 +444,7 @@ int nldr_create(OUT struct nldr_object **phNldr, u16 i; int status = 0; DBC_REQUIRE(refs > 0); - DBC_REQUIRE(phNldr != NULL); + DBC_REQUIRE(nldr != NULL); DBC_REQUIRE(hdev_obj != NULL); DBC_REQUIRE(pattrs != NULL); DBC_REQUIRE(pattrs->pfn_ovly != NULL); @@ -593,16 +593,16 @@ int nldr_create(OUT struct nldr_object **phNldr, &save_attrs, &ul_entry); } if (DSP_SUCCEEDED(status)) { - *phNldr = (struct nldr_object *)nldr_obj; + *nldr = (struct nldr_object *)nldr_obj; } else { if (nldr_obj) nldr_delete((struct nldr_object *)nldr_obj); - *phNldr = NULL; + *nldr = NULL; } /* FIXME:Temp. Fix. Must be removed */ - DBC_ENSURE((DSP_SUCCEEDED(status) && *phNldr) - || (DSP_FAILED(status) && (*phNldr == NULL))); + DBC_ENSURE((DSP_SUCCEEDED(status) && *nldr) + || (DSP_FAILED(status) && (*nldr == NULL))); return status; } @@ -775,21 +775,21 @@ int nldr_get_fxn_addr(struct nldr_nodeobject *nldr_node_obj, * Given a NLDR object, retrieve RMM Manager Handle */ int nldr_get_rmm_manager(struct nldr_object *nldr, - OUT struct rmm_target_obj **phRmmMgr) + OUT struct rmm_target_obj **rmm_mgr) { int status = 0; struct nldr_object *nldr_obj = nldr; - DBC_REQUIRE(phRmmMgr != NULL); + DBC_REQUIRE(rmm_mgr != NULL); if (nldr) { - *phRmmMgr = nldr_obj->rmm; + *rmm_mgr = nldr_obj->rmm; } else { - *phRmmMgr = NULL; + *rmm_mgr = NULL; status = -EFAULT; } - DBC_ENSURE(DSP_SUCCEEDED(status) || ((phRmmMgr != NULL) && - (*phRmmMgr == NULL))); + DBC_ENSURE(DSP_SUCCEEDED(status) || ((rmm_mgr != NULL) && + (*rmm_mgr == NULL))); return status; } @@ -1071,7 +1071,7 @@ static int add_ovly_node(struct dsp_uuid *uuid_obj, * ======== add_ovly_sect ======== */ static int add_ovly_sect(struct nldr_object *nldr_obj, - struct ovly_sect **pList, + struct ovly_sect **lst, struct dbll_sect_info *pSectInfo, bool *exists, u32 addr, u32 bytes) { @@ -1080,7 +1080,7 @@ static int add_ovly_sect(struct nldr_object *nldr_obj, struct ovly_sect *ovly_section; int status = 0; - ovly_section = last_sect = *pList; + ovly_section = last_sect = *lst; *exists = false; while (ovly_section) { /* @@ -1111,9 +1111,9 @@ static int add_ovly_sect(struct nldr_object *nldr_obj, /* Add to the list */ if (DSP_SUCCEEDED(status)) { - if (*pList == NULL) { + if (*lst == NULL) { /* First in the list */ - *pList = new_sect; + *lst = new_sect; } else { last_sect->next_sect = new_sect; } diff --git a/drivers/staging/tidspbridge/rmgr/node.c b/drivers/staging/tidspbridge/rmgr/node.c index 7cffca4fdc1bedf2ec136784aff944e304bdaee4..5e586d4d26ad6fb93510092a155927449ecd3636 100644 --- a/drivers/staging/tidspbridge/rmgr/node.c +++ b/drivers/staging/tidspbridge/rmgr/node.c @@ -1302,7 +1302,7 @@ int node_create(struct node_object *hnode) * Purpose: * Create a NODE Manager object. */ -int node_create_mgr(OUT struct node_mgr **phNodeMgr, +int node_create_mgr(OUT struct node_mgr **node_man, struct dev_object *hdev_obj) { u32 i; @@ -1313,10 +1313,10 @@ int node_create_mgr(OUT struct node_mgr **phNodeMgr, int status = 0; u8 dev_type; DBC_REQUIRE(refs > 0); - DBC_REQUIRE(phNodeMgr != NULL); + DBC_REQUIRE(node_man != NULL); DBC_REQUIRE(hdev_obj != NULL); - *phNodeMgr = NULL; + *node_man = NULL; /* Allocate Node manager object */ node_mgr_obj = kzalloc(sizeof(struct node_mgr), GFP_KERNEL); if (node_mgr_obj) { @@ -1419,12 +1419,12 @@ int node_create_mgr(OUT struct node_mgr **phNodeMgr, &nldr_attrs_obj); } if (DSP_SUCCEEDED(status)) - *phNodeMgr = node_mgr_obj; + *node_man = node_mgr_obj; else delete_node_mgr(node_mgr_obj); - DBC_ENSURE((DSP_FAILED(status) && (*phNodeMgr == NULL)) || - (DSP_SUCCEEDED(status) && *phNodeMgr)); + DBC_ENSURE((DSP_FAILED(status) && (*node_man == NULL)) || + (DSP_SUCCEEDED(status) && *node_man)); return status; } @@ -1880,19 +1880,19 @@ int node_get_message(struct node_object *hnode, * ======== node_get_nldr_obj ======== */ int node_get_nldr_obj(struct node_mgr *hnode_mgr, - struct nldr_object **phNldrObj) + struct nldr_object **nldr_ovlyobj) { int status = 0; struct node_mgr *node_mgr_obj = hnode_mgr; - DBC_REQUIRE(phNldrObj != NULL); + DBC_REQUIRE(nldr_ovlyobj != NULL); if (!hnode_mgr) status = -EFAULT; else - *phNldrObj = node_mgr_obj->nldr_obj; + *nldr_ovlyobj = node_mgr_obj->nldr_obj; - DBC_ENSURE(DSP_SUCCEEDED(status) || ((phNldrObj != NULL) && - (*phNldrObj == NULL))); + DBC_ENSURE(DSP_SUCCEEDED(status) || ((nldr_ovlyobj != NULL) && + (*nldr_ovlyobj == NULL))); return status; } @@ -1902,7 +1902,7 @@ int node_get_nldr_obj(struct node_mgr *hnode_mgr, * Returns the Stream manager. */ int node_get_strm_mgr(struct node_object *hnode, - struct strm_mgr **phStrmMgr) + struct strm_mgr **strm_man) { int status = 0; @@ -1911,7 +1911,7 @@ int node_get_strm_mgr(struct node_object *hnode, if (!hnode) status = -EFAULT; else - *phStrmMgr = hnode->hnode_mgr->strm_mgr_obj; + *strm_man = hnode->hnode_mgr->strm_mgr_obj; return status; } diff --git a/drivers/staging/tidspbridge/rmgr/strm.c b/drivers/staging/tidspbridge/rmgr/strm.c index 795332e14abbbadb745f4d9dab8ec81dd83d2fc6..f6922f485037de1de2fdab51ab806fd379594915 100644 --- a/drivers/staging/tidspbridge/rmgr/strm.c +++ b/drivers/staging/tidspbridge/rmgr/strm.c @@ -200,17 +200,17 @@ int strm_close(struct strm_object *stream_obj, * Purpose: * Create a STRM manager object. */ -int strm_create(OUT struct strm_mgr **phStrmMgr, +int strm_create(OUT struct strm_mgr **strm_man, struct dev_object *dev_obj) { struct strm_mgr *strm_mgr_obj; int status = 0; DBC_REQUIRE(refs > 0); - DBC_REQUIRE(phStrmMgr != NULL); + DBC_REQUIRE(strm_man != NULL); DBC_REQUIRE(dev_obj != NULL); - *phStrmMgr = NULL; + *strm_man = NULL; /* Allocate STRM manager object */ strm_mgr_obj = kzalloc(sizeof(struct strm_mgr), GFP_KERNEL); if (strm_mgr_obj == NULL) @@ -229,12 +229,12 @@ int strm_create(OUT struct strm_mgr **phStrmMgr, } if (DSP_SUCCEEDED(status)) - *phStrmMgr = strm_mgr_obj; + *strm_man = strm_mgr_obj; else delete_strm_mgr(strm_mgr_obj); - DBC_ENSURE((DSP_SUCCEEDED(status) && *phStrmMgr) || - (DSP_FAILED(status) && *phStrmMgr == NULL)); + DBC_ENSURE((DSP_SUCCEEDED(status) && *strm_man) || + (DSP_FAILED(status) && *strm_man == NULL)); return status; } @@ -468,7 +468,7 @@ int strm_issue(struct strm_object *stream_obj, IN u8 *pbuf, u32 ul_bytes, */ int strm_open(struct node_object *hnode, u32 dir, u32 index, IN struct strm_attr *pattr, - OUT struct strm_object **phStrm, + OUT struct strm_object **strm_objct, struct process_context *pr_ctxt) { struct strm_mgr *strm_mgr_obj; @@ -483,9 +483,9 @@ int strm_open(struct node_object *hnode, u32 dir, u32 index, void *hstrm_res; DBC_REQUIRE(refs > 0); - DBC_REQUIRE(phStrm != NULL); + DBC_REQUIRE(strm_objct != NULL); DBC_REQUIRE(pattr != NULL); - *phStrm = NULL; + *strm_objct = NULL; if (dir != DSP_TONODE && dir != DSP_FROMNODE) { status = -EPERM; } else { @@ -595,21 +595,22 @@ int strm_open(struct node_object *hnode, u32 dir, u32 index, } } if (DSP_SUCCEEDED(status)) { - *phStrm = strm_obj; - drv_proc_insert_strm_res_element(*phStrm, &hstrm_res, pr_ctxt); + *strm_objct = strm_obj; + drv_proc_insert_strm_res_element(*strm_objct, &hstrm_res, + pr_ctxt); } else { (void)delete_strm(strm_obj); } /* ensure we return a documented error code */ - DBC_ENSURE((DSP_SUCCEEDED(status) && *phStrm) || - (*phStrm == NULL && (status == -EFAULT || + DBC_ENSURE((DSP_SUCCEEDED(status) && *strm_objct) || + (*strm_objct == NULL && (status == -EFAULT || status == -EPERM || status == -EINVAL))); dev_dbg(bridge, "%s: hnode: %p dir: 0x%x index: 0x%x pattr: %p " - "phStrm: %p status: 0x%x\n", __func__, - hnode, dir, index, pattr, phStrm, status); + "strm_objct: %p status: 0x%x\n", __func__, + hnode, dir, index, pattr, strm_objct, status); return status; }