mirror of https://gitee.com/openkylin/linux.git
staging: tidspbridge: fixed space coding style
- Adjusted pointer's '*' declaration to the data_type. - Added space after 'if' keyword Signed-off-by: Masood Mehmood <ody.guru@gmail.com> Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
503a1ac74a
commit
9cd02bd876
|
@ -503,7 +503,7 @@ static int priv_tgt_img_gen(struct dload_state *dlthis, u32 base,
|
|||
* TRAMPOLINES ARE TREATED AS 2ND PASS even though this is really
|
||||
* the first (and only) relocation that will be performed on them.
|
||||
*/
|
||||
static int priv_pkt_relo(struct dload_state *dlthis, tgt_au_t * data,
|
||||
static int priv_pkt_relo(struct dload_state *dlthis, tgt_au_t *data,
|
||||
struct reloc_record_t *rp[], u32 relo_count)
|
||||
{
|
||||
int ret_val = 1;
|
||||
|
|
|
@ -101,14 +101,14 @@ static int dcd_uuid_from_string(char *sz_uuid, struct dsp_uuid *uuid_obj)
|
|||
* if the converted value doesn't fit in u32. So, convert the
|
||||
* last six bytes to u64 and memcpy what is needed
|
||||
*/
|
||||
if(sscanf(sz_uuid, "%8x%c%4hx%c%4hx%c%2hhx%2hhx%c%llx",
|
||||
if (sscanf(sz_uuid, "%8x%c%4hx%c%4hx%c%2hhx%2hhx%c%llx",
|
||||
&uuid_tmp.data1, &c, &uuid_tmp.data2, &c,
|
||||
&uuid_tmp.data3, &c, &uuid_tmp.data4,
|
||||
&uuid_tmp.data5, &c, &t) != 10)
|
||||
return -EINVAL;
|
||||
|
||||
t = cpu_to_be64(t);
|
||||
memcpy(&uuid_tmp.data6[0], ((char*)&t) + 2, 6);
|
||||
memcpy(&uuid_tmp.data6[0], ((char *)&t) + 2, 6);
|
||||
*uuid_obj = uuid_tmp;
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -738,7 +738,7 @@ void mem_ext_phys_pool_release(void)
|
|||
* Allocate physically contiguous, uncached memory from external memory pool
|
||||
*/
|
||||
|
||||
static void *mem_ext_phys_mem_alloc(u32 bytes, u32 align, u32 * phys_addr)
|
||||
static void *mem_ext_phys_mem_alloc(u32 bytes, u32 align, u32 *phys_addr)
|
||||
{
|
||||
u32 new_alloc_ptr;
|
||||
u32 offset;
|
||||
|
|
|
@ -623,7 +623,7 @@ void nldr_delete(struct nldr_object *nldr_obj)
|
|||
* ======== nldr_get_fxn_addr ========
|
||||
*/
|
||||
int nldr_get_fxn_addr(struct nldr_nodeobject *nldr_node_obj,
|
||||
char *str_fxn, u32 * addr)
|
||||
char *str_fxn, u32 *addr)
|
||||
{
|
||||
struct dbll_sym_val *dbll_sym;
|
||||
struct nldr_object *nldr_obj;
|
||||
|
|
|
@ -246,7 +246,7 @@ static void fill_stream_def(struct node_object *hnode,
|
|||
struct node_strmdef *pstrm_def,
|
||||
struct dsp_strmattr *pattrs);
|
||||
static void free_stream(struct node_mgr *hnode_mgr, struct stream_chnl stream);
|
||||
static int get_fxn_address(struct node_object *hnode, u32 * fxn_addr,
|
||||
static int get_fxn_address(struct node_object *hnode, u32 *fxn_addr,
|
||||
u32 phase);
|
||||
static int get_node_props(struct dcd_manager *hdcd_mgr,
|
||||
struct node_object *hnode,
|
||||
|
@ -1576,7 +1576,7 @@ int node_enum_nodes(struct node_mgr *hnode_mgr, void **node_tab,
|
|||
* Purpose:
|
||||
* Frees the message buffer.
|
||||
*/
|
||||
int node_free_msg_buf(struct node_object *hnode, u8 * pbuffer,
|
||||
int node_free_msg_buf(struct node_object *hnode, u8 *pbuffer,
|
||||
struct dsp_bufferattr *pattr)
|
||||
{
|
||||
struct node_object *pnode = (struct node_object *)hnode;
|
||||
|
@ -2640,7 +2640,7 @@ static void free_stream(struct node_mgr *hnode_mgr, struct stream_chnl stream)
|
|||
* Purpose:
|
||||
* Retrieves the address for create, execute or delete phase for a node.
|
||||
*/
|
||||
static int get_fxn_address(struct node_object *hnode, u32 * fxn_addr,
|
||||
static int get_fxn_address(struct node_object *hnode, u32 *fxn_addr,
|
||||
u32 phase)
|
||||
{
|
||||
char *pstr_fxn_name = NULL;
|
||||
|
|
Loading…
Reference in New Issue