staging: tidspbridge: fixed space coding style
authorMasood Mehmood <ody.guru@gmail.com>
Sat, 1 Mar 2014 08:41:55 +0000 (00:41 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 1 Mar 2014 16:10:51 +0000 (08:10 -0800)
- 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>
drivers/staging/tidspbridge/dynload/tramp.c
drivers/staging/tidspbridge/rmgr/dbdcd.c
drivers/staging/tidspbridge/rmgr/drv.c
drivers/staging/tidspbridge/rmgr/nldr.c
drivers/staging/tidspbridge/rmgr/node.c

index 404af18..5f04313 100644 (file)
@@ -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;
index 190ca3f..2ae48c9 100644 (file)
@@ -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;
index be26917..757ae20 100644 (file)
@@ -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;
index ca38050..7e10c95 100644 (file)
@@ -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;
index 87dfa92..c0211dd 100644 (file)
@@ -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 @@ func_end:
  *  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;