This is an automated email from Gerrit.

Salvador Arroyo ([email protected]) just uploaded a new patch set to Gerrit, 
which you can find at http://openocd.zylin.com/551

-- gerrit

commit f64b4b92d175b9e29f6ccda8b0dcb5131ee45043
Author: Salvador <[email protected]>
Date:   Mon Apr 2 20:53:47 2012 +0200

    Cleanups
    
    Change-Id: If3768835f3c5ab27260be23f832097b70fe1c108
    Signed-off-by: Salvador <[email protected]>

diff --git a/src/target/mips32_pracc.c b/src/target/mips32_pracc.c
index 02c4c3e..99a869a 100644
--- a/src/target/mips32_pracc.c
+++ b/src/target/mips32_pracc.c
@@ -442,40 +442,40 @@ static int mips32_pracc_read_mem16(struct mips_ejtag 
*ejtag_info, uint32_t addr,
 
        /* TODO remove array */
        uint32_t *param_out = malloc(count * sizeof(uint32_t));
-       if(param_out == NULL) {
+       if (param_out == NULL) {
                LOG_ERROR("Out of memory");
                return ERROR_FAIL;
-               }       
+               }
 
        int retval = ERROR_OK;
        int blocksize;
-       int hwordsread=0;
-       uint32_t param_in[2];   
-       
-       while (count > 0) 
+       int hwordsread = 0;
+       uint32_t param_in[2];
+
+       while (count > 0)
        {
                blocksize = count;
                if (count > 0x400)
                        blocksize = 0x400;
-               
+
                param_in[0] = addr;
                param_in[1] = blocksize;
-               
+
                retval = mips32_pracc_exec(ejtag_info, ARRAY_SIZE(code), code,
                        ARRAY_SIZE(param_in), param_in, blocksize, 
&param_out[hwordsread], 1);
-               
+
                if (retval != ERROR_OK)
                        return retval;
-               
-               count -= blocksize; 
-               addr += blocksize*sizeof(uint16_t); 
-               hwordsread+=blocksize;
+
+               count -= blocksize;
+               addr += blocksize*sizeof(uint16_t);
+               hwordsread += blocksize;
        }
-       
+
        int i;
        for (i = 0; i < hwordsread; i++)
                buf[i] = param_out[i];
-       
+
        free(param_out);
        return retval;
 }
@@ -521,17 +521,17 @@ static int mips32_pracc_read_mem8(struct mips_ejtag 
*ejtag_info, uint32_t addr,
 
        /* TODO remove array */
        uint32_t *param_out = malloc(count * sizeof(uint32_t));
-       if(param_out == NULL) {
+       if (param_out == NULL) {
                LOG_ERROR("Out of memory");
                return ERROR_FAIL;
                }
-               
+
        int retval = ERROR_OK;
-       int blocksize;  
+       int blocksize;
        uint32_t param_in[2];
        int bytesread=0;
        
-       while (count > 0) 
+       while (count > 0)
        {
                blocksize = count;
                if (count > 0x400)
@@ -539,20 +539,20 @@ static int mips32_pracc_read_mem8(struct mips_ejtag 
*ejtag_info, uint32_t addr,
 
                param_in[0] = addr;
                param_in[1] = blocksize;
-               
+
                retval = mips32_pracc_exec(ejtag_info, ARRAY_SIZE(code), code,
                        ARRAY_SIZE(param_in), param_in, count, 
&param_out[bytesread], 1);
                
                if (retval != ERROR_OK)
                        return retval;
 
-               count -= blocksize; 
-               addr += blocksize; 
+               count -= blocksize;
+               addr += blocksize;
                bytesread+=blocksize;
        }
        int i;
        for (i = 0; i < bytesread; i++)
-               buf[i] = param_out[i]; 
+               buf[i] = param_out[i];
 
        free(param_out);
        return retval;

-- 

------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to