Commit 9cd02bd8 authored by Masood Mehmood's avatar Masood Mehmood Committed by Greg Kroah-Hartman

staging: tidspbridge: fixed space coding style

- Adjusted pointer's '*' declaration to the data_type.
- Added space after 'if' keyword
Signed-off-by: default avatarMasood Mehmood <ody.guru@gmail.com>
Reviewed-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 503a1ac7
...@@ -503,7 +503,7 @@ static int priv_tgt_img_gen(struct dload_state *dlthis, u32 base, ...@@ -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 * TRAMPOLINES ARE TREATED AS 2ND PASS even though this is really
* the first (and only) relocation that will be performed on them. * 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) struct reloc_record_t *rp[], u32 relo_count)
{ {
int ret_val = 1; int ret_val = 1;
......
...@@ -101,14 +101,14 @@ static int dcd_uuid_from_string(char *sz_uuid, struct dsp_uuid *uuid_obj) ...@@ -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 * if the converted value doesn't fit in u32. So, convert the
* last six bytes to u64 and memcpy what is needed * 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.data1, &c, &uuid_tmp.data2, &c,
&uuid_tmp.data3, &c, &uuid_tmp.data4, &uuid_tmp.data3, &c, &uuid_tmp.data4,
&uuid_tmp.data5, &c, &t) != 10) &uuid_tmp.data5, &c, &t) != 10)
return -EINVAL; return -EINVAL;
t = cpu_to_be64(t); 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; *uuid_obj = uuid_tmp;
return 0; return 0;
......
...@@ -738,7 +738,7 @@ void mem_ext_phys_pool_release(void) ...@@ -738,7 +738,7 @@ void mem_ext_phys_pool_release(void)
* Allocate physically contiguous, uncached memory from external memory pool * 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 new_alloc_ptr;
u32 offset; u32 offset;
......
...@@ -623,7 +623,7 @@ void nldr_delete(struct nldr_object *nldr_obj) ...@@ -623,7 +623,7 @@ void nldr_delete(struct nldr_object *nldr_obj)
* ======== nldr_get_fxn_addr ======== * ======== nldr_get_fxn_addr ========
*/ */
int nldr_get_fxn_addr(struct nldr_nodeobject *nldr_node_obj, 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 dbll_sym_val *dbll_sym;
struct nldr_object *nldr_obj; struct nldr_object *nldr_obj;
......
...@@ -246,7 +246,7 @@ static void fill_stream_def(struct node_object *hnode, ...@@ -246,7 +246,7 @@ static void fill_stream_def(struct node_object *hnode,
struct node_strmdef *pstrm_def, struct node_strmdef *pstrm_def,
struct dsp_strmattr *pattrs); struct dsp_strmattr *pattrs);
static void free_stream(struct node_mgr *hnode_mgr, struct stream_chnl stream); 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); u32 phase);
static int get_node_props(struct dcd_manager *hdcd_mgr, static int get_node_props(struct dcd_manager *hdcd_mgr,
struct node_object *hnode, struct node_object *hnode,
...@@ -1576,7 +1576,7 @@ int node_enum_nodes(struct node_mgr *hnode_mgr, void **node_tab, ...@@ -1576,7 +1576,7 @@ int node_enum_nodes(struct node_mgr *hnode_mgr, void **node_tab,
* Purpose: * Purpose:
* Frees the message buffer. * 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 dsp_bufferattr *pattr)
{ {
struct node_object *pnode = (struct node_object *)hnode; 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) ...@@ -2640,7 +2640,7 @@ static void free_stream(struct node_mgr *hnode_mgr, struct stream_chnl stream)
* Purpose: * Purpose:
* Retrieves the address for create, execute or delete phase for a node. * 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) u32 phase)
{ {
char *pstr_fxn_name = NULL; char *pstr_fxn_name = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment