From: <zw...@ma...> - 2009-06-24 00:37:44
|
Author: zwelch Date: 2009-06-24 00:37:21 +0200 (Wed, 24 Jun 2009) New Revision: 2360 Modified: trunk/src/flash/cfi.c trunk/src/flash/flash.c trunk/src/flash/nand_ecc.c trunk/src/flash/pic32mx.c trunk/src/helper/jim.c trunk/src/helper/options.c trunk/src/jtag/core.c trunk/src/jtag/interface.c trunk/src/jtag/rlink/rlink.c trunk/src/jtag/tcl.c trunk/src/jtag/zy1000/jtag_minidriver.h trunk/src/jtag/zy1000/zy1000.c trunk/src/server/gdb_server.c trunk/src/target/mips_m4k.c trunk/src/target/target.c trunk/src/target/xscale.c trunk/src/xsvf/xsvf.c trunk/testing/examples/PIC32/BlinkingLeds.c Log: - Replace 'for(' with 'for ('. Modified: trunk/src/flash/cfi.c =================================================================== --- trunk/src/flash/cfi.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/flash/cfi.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -212,7 +212,7 @@ if (cfi_info->x16_as_x8) { uint8_t i; - for(i=0;i<2;i++) + for (i=0;i<2;i++) target_read_memory(target, flash_address(bank, sector, offset+i), bank->bus_width, 1, &data[i*bank->bus_width] ); } @@ -234,7 +234,7 @@ if (cfi_info->x16_as_x8) { uint8_t i; - for(i=0;i<4;i++) + for (i=0;i<4;i++) target_read_memory(target, flash_address(bank, sector, offset+i), bank->bus_width, 1, &data[i*bank->bus_width] ); } Modified: trunk/src/flash/flash.c =================================================================== --- trunk/src/flash/flash.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/flash/flash.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -770,13 +770,13 @@ switch (wordsize) { case 4: - for(i = 0; i < chunk_count; i++) + for (i = 0; i < chunk_count; i++) { target_buffer_set_u32(target, chunk + i * wordsize, pattern); } break; case 2: - for(i = 0; i < chunk_count; i++) + for (i = 0; i < chunk_count; i++) { target_buffer_set_u16(target, chunk + i * wordsize, pattern); } Modified: trunk/src/flash/nand_ecc.c =================================================================== --- trunk/src/flash/nand_ecc.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/flash/nand_ecc.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -77,7 +77,7 @@ reg1 = reg2 = reg3 = 0; /* Build up column parity */ - for(i = 0; i < 256; i++) { + for (i = 0; i < 256; i++) { /* Get CP0 - CP5 from table */ idx = nand_ecc_precalc_table[*dat++]; reg1 ^= (idx & 0x3f); Modified: trunk/src/flash/pic32mx.c =================================================================== --- trunk/src/flash/pic32mx.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/flash/pic32mx.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -620,7 +620,7 @@ num_pages = 12; } else { /* 0xBD000000: Program flash size varies with device */ - for(i=0; pic32mx_devs[i].name != NULL; i++) + for (i=0; pic32mx_devs[i].name != NULL; i++) if (pic32mx_devs[i].devid == ((device_id >> 12) & 0xff)) { num_pages = pic32mx_devs[i].pfm_size; break; @@ -704,7 +704,7 @@ PIC32MX_MANUF_ID); return ERROR_FLASH_OPERATION_FAILED; } - for(i=0; pic32mx_devs[i].name != NULL; i++) + for (i=0; pic32mx_devs[i].name != NULL; i++) if (pic32mx_devs[i].devid == ((device_id >> 12) & 0xff)) { printed = snprintf(buf, buf_size, "PIC32MX%s", pic32mx_devs[i].name); break; Modified: trunk/src/helper/jim.c =================================================================== --- trunk/src/helper/jim.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/helper/jim.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -504,7 +504,7 @@ { jim_wide i, res = 1; if ((b==0 && e!=0) || (e<0)) return 0; - for(i=0; i<e; i++) {res *= b;} + for (i=0; i<e; i++) {res *= b;} return res; } @@ -10425,7 +10425,7 @@ script = caseList[i+1]; } } - for(; i < patCount && Jim_CompareStringImmediate(interp, script, "-"); + for (; i < patCount && Jim_CompareStringImmediate(interp, script, "-"); i += 2) script = caseList[i+1]; if (script && Jim_CompareStringImmediate(interp, script, "-")) { @@ -12599,7 +12599,7 @@ int x; Jim_fprintf( p->interp, p->interp->cookie_stderr, "---args---\n"); - for( x = 0 ; x < p->argc ; x++ ){ + for ( x = 0 ; x < p->argc ; x++ ){ Jim_fprintf( p->interp, p->interp->cookie_stderr, "%2d) %s\n", x, @@ -12823,7 +12823,7 @@ } debug_string_obj = Jim_NewEmptyStringObj( interp ); - for( x = 0 ; x < argc ; x++ ){ + for ( x = 0 ; x < argc ; x++ ){ Jim_AppendStrings( interp, debug_string_obj, Jim_GetString( argv[x], NULL ), Modified: trunk/src/helper/options.c =================================================================== --- trunk/src/helper/options.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/helper/options.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -90,7 +90,7 @@ GetModuleFileName (NULL, strExePath, MAX_PATH); *strrchr(strExePath, '\\')=0; strcat(strExePath, "/../lib/"PACKAGE); - for(p=strExePath; *p; p++) { + for (p=strExePath; *p; p++) { if (*p == '\\') *p = '/'; } Modified: trunk/src/jtag/core.c =================================================================== --- trunk/src/jtag/core.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/jtag/core.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -1024,7 +1024,7 @@ tap = NULL; total_ir_length = 0; - for(;;){ + for (;;){ tap = jtag_tap_next_enabled(tap); if ( tap == NULL ){ break; @@ -1048,7 +1048,7 @@ tap = NULL; chain_pos = 0; int val; - for(;;){ + for (;;){ tap = jtag_tap_next_enabled(tap); if ( tap == NULL ){ break; Modified: trunk/src/jtag/interface.c =================================================================== --- trunk/src/jtag/interface.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/jtag/interface.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -359,7 +359,7 @@ { tap_state_t x; - for( x = 0 ; x < TAP_NUM_STATES ; x++ ){ + for ( x = 0 ; x < TAP_NUM_STATES ; x++ ){ /* be nice to the human */ if ( 0 == strcasecmp( name, tap_state_name(x) ) ){ return x; @@ -403,9 +403,9 @@ DEBUG_JTAG_IO("TAP/SM: TMS bits: %u (bytes: %u)", tap_bits, tap_bytes); tap_out_bits = 0; - for(cur_byte = 0; cur_byte < tap_bytes; cur_byte++) + for (cur_byte = 0; cur_byte < tap_bytes; cur_byte++) { - for(cur_bit = 0; cur_bit < 8; cur_bit++) + for (cur_bit = 0; cur_bit < 8; cur_bit++) { // make sure we do not run off the end of the buffers unsigned tap_bit = cur_byte * 8 + cur_bit; Modified: trunk/src/jtag/rlink/rlink.c =================================================================== --- trunk/src/jtag/rlink/rlink.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/jtag/rlink/rlink.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -518,7 +518,7 @@ /* Wait for DTC to finish running command buffer */ - for(i = 10;;) { + for (i = 10;;) { usb_err = ep1_generic_commandl( pHDev, 4, @@ -711,7 +711,7 @@ /* The rigamarole with the masks and doing it bit-by-bit is due to the fact that the scan buffer is LSb-first and the DTC code is MSb-first for hardware reasons. It was that or craft a function to do the reversal, and that wouldn't work with bit-stuffing (supplying extra bits to use mostly byte operations), or any other scheme which would throw the byte alignment off. */ - for( + for ( rq_p = dtc_queue.rq_head; rq_p != NULL; rq_p = rq_next @@ -726,7 +726,7 @@ dtc_mask = 1 << (8 - 1); - for( + for ( ; bit_cnt; bit_cnt-- @@ -764,7 +764,7 @@ dtc_mask = 1 << (bit_cnt - 1); } - for( + for ( ; bit_cnt; bit_cnt-- @@ -834,7 +834,7 @@ if (!tap_state_queue.length) return(retval); bits = 1; byte = 0; - for(i = tap_state_queue.length; i--;) { + for (i = tap_state_queue.length; i--;) { byte <<= 1; if (tap_state_queue.buffer & 1) { @@ -1140,7 +1140,7 @@ buffer[scan_size / 8] &= ((1 << ((scan_size - 1) % 8) + 1) - 1); printf("before scan:"); - for(i = 0; i < (scan_size + 7) / 8; i++) { + for (i = 0; i < (scan_size + 7) / 8; i++) { printf(" %02x", buffer[i]); } printf("\n"); @@ -1503,7 +1503,7 @@ speed = rlink_speed_table[rlink_speed_table_size - 1].prescaler; } - for(i = rlink_speed_table_size; i--; ) { + for (i = rlink_speed_table_size; i--; ) { if (rlink_speed_table[i].prescaler == speed) { if (dtc_load_from_buffer(pHDev, rlink_speed_table[i].dtc, rlink_speed_table[i].dtc_size) != 0) { LOG_ERROR("An error occurred while trying to load DTC code for speed \"%d\".\n", speed); @@ -1534,7 +1534,7 @@ ) { int i; - for(i = rlink_speed_table_size; i--; ) { + for (i = rlink_speed_table_size; i--; ) { if (rlink_speed_table[i].prescaler == speed) { *khz = rlink_speed_table[i].khz; return(ERROR_OK); @@ -1558,7 +1558,7 @@ return ERROR_FAIL; } - for(i = rlink_speed_table_size; i--; ) { + for (i = rlink_speed_table_size; i--; ) { if (rlink_speed_table[i].khz <= khz) { *speed = rlink_speed_table[i].prescaler; return(ERROR_OK); @@ -1630,11 +1630,11 @@ busses = usb_get_busses(); - for(bus = busses; bus; bus = bus->next) + for (bus = busses; bus; bus = bus->next) { struct usb_device *dev; - for(dev = bus->devices; dev; dev = dev->next) + for (dev = bus->devices; dev; dev = dev->next) { if ( (dev->descriptor.idVendor == USB_IDVENDOR) && (dev->descriptor.idProduct == USB_IDPRODUCT) ) { @@ -1715,7 +1715,7 @@ /* The device starts out in an unknown state on open. As such, result reads time out, and it's not even known whether the command was accepted. So, for this first command, we issue it repeatedly until its response doesn't time out. Also, if sending a command is going to time out, we'll find that out here. */ /* It must be possible to open the device in such a way that this special magic isn't needed, but, so far, it escapes us. */ - for(i = 0; i < 5; i++) { + for (i = 0; i < 5; i++) { j = ep1_generic_commandl( pHDev, 1, EP1_CMD_GET_FWREV Modified: trunk/src/jtag/tcl.c =================================================================== --- trunk/src/jtag/tcl.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/jtag/tcl.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -1181,7 +1181,7 @@ const char *cpA; const char *cpS; cpA = args[ argc-1 ]; - for( endstate = 0 ; endstate < TAP_NUM_STATES ; endstate++ ){ + for ( endstate = 0 ; endstate < TAP_NUM_STATES ; endstate++ ){ cpS = tap_state_name( endstate ); if ( 0 == strcmp( cpA, cpS ) ){ break; Modified: trunk/src/jtag/zy1000/jtag_minidriver.h =================================================================== --- trunk/src/jtag/zy1000/jtag_minidriver.h 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/jtag/zy1000/jtag_minidriver.h 2009-06-23 22:37:21 UTC (rev 2360) @@ -157,7 +157,7 @@ enum tap_state pause_state = TAP_DRSHIFT; jtag_tap_t *tap, *nextTap; - for(tap = jtag_tap_next_enabled(NULL); tap!= NULL; tap=nextTap) + for (tap = jtag_tap_next_enabled(NULL); tap!= NULL; tap=nextTap) { nextTap=jtag_tap_next_enabled(tap); if (nextTap==NULL) Modified: trunk/src/jtag/zy1000/zy1000.c =================================================================== --- trunk/src/jtag/zy1000/zy1000.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/jtag/zy1000/zy1000.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -494,7 +494,7 @@ int j; int scan_size = 0; jtag_tap_t *tap, *nextTap; - for(tap = jtag_tap_next_enabled(NULL); tap!= NULL; tap=nextTap) + for (tap = jtag_tap_next_enabled(NULL); tap!= NULL; tap=nextTap) { nextTap=jtag_tap_next_enabled(tap); tap_state_t end_state; @@ -563,7 +563,7 @@ int j; jtag_tap_t *tap, *nextTap; - for(tap = jtag_tap_next_enabled(NULL); tap!= NULL; tap=nextTap) + for (tap = jtag_tap_next_enabled(NULL); tap!= NULL; tap=nextTap) { nextTap=jtag_tap_next_enabled(tap); int found=0; Modified: trunk/src/server/gdb_server.c =================================================================== --- trunk/src/server/gdb_server.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/server/gdb_server.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -2041,7 +2041,7 @@ // binary packets spew junk into the debug log stream char buf[ 50 ]; int x; - for( x = 0 ; (x < 49) && (packet[x] != ':') ; x++ ){ + for ( x = 0 ; (x < 49) && (packet[x] != ':') ; x++ ){ buf[x] = packet[x]; } buf[x] = 0; Modified: trunk/src/target/mips_m4k.c =================================================================== --- trunk/src/target/mips_m4k.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/target/mips_m4k.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -763,7 +763,7 @@ uint32_t i, t32; uint16_t t16; - for(i = 0; i < (count*size); i += size) + for (i = 0; i < (count*size); i += size) { switch (size) { @@ -808,7 +808,7 @@ uint32_t i, t32; uint16_t t16; - for(i = 0; i < (count*size); i += size) + for (i = 0; i < (count*size); i += size) { switch (size) { Modified: trunk/src/target/target.c =================================================================== --- trunk/src/target/target.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/target/target.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -3829,7 +3829,7 @@ b = 1; break; } - for( x = 0 ; x < c ; x++ ){ + for ( x = 0 ; x < c ; x++ ){ e = target_write_memory( target, a, b, 1, target_buf ); if ( e != ERROR_OK ){ Jim_SetResult_sprintf( interp, "Error writing @ 0x%08x: %d\n", (int)(a), e ); @@ -3895,36 +3895,36 @@ Jim_fprintf( interp, interp->cookie_stdout, "0x%08x ", (int)(a) ); switch ( b ){ case 4: - for( x = 0 ; (x < 16) && (x < y) ; x += 4 ){ + for ( x = 0 ; (x < 16) && (x < y) ; x += 4 ){ z = target_buffer_get_u32( target, &(target_buf[ x * 4 ]) ); Jim_fprintf( interp, interp->cookie_stdout, "%08x ", (int)(z) ); } - for( ; (x < 16) ; x += 4 ){ + for ( ; (x < 16) ; x += 4 ){ Jim_fprintf( interp, interp->cookie_stdout, " " ); } break; case 2: - for( x = 0 ; (x < 16) && (x < y) ; x += 2 ){ + for ( x = 0 ; (x < 16) && (x < y) ; x += 2 ){ z = target_buffer_get_u16( target, &(target_buf[ x * 2 ]) ); Jim_fprintf( interp, interp->cookie_stdout, "%04x ", (int)(z) ); } - for( ; (x < 16) ; x += 2 ){ + for ( ; (x < 16) ; x += 2 ){ Jim_fprintf( interp, interp->cookie_stdout, " " ); } break; case 1: default: - for( x = 0 ; (x < 16) && (x < y) ; x += 1 ){ + for ( x = 0 ; (x < 16) && (x < y) ; x += 1 ){ z = target_buffer_get_u8( target, &(target_buf[ x * 4 ]) ); Jim_fprintf( interp, interp->cookie_stdout, "%02x ", (int)(z) ); } - for( ; (x < 16) ; x += 1 ){ + for ( ; (x < 16) ; x += 1 ){ Jim_fprintf( interp, interp->cookie_stdout, " " ); } break; } /* ascii-ify the bytes */ - for( x = 0 ; x < y ; x++ ){ + for ( x = 0 ; x < y ; x++ ){ if ( (target_buf[x] >= 0x20) && (target_buf[x] <= 0x7e) ){ /* good */ @@ -4132,7 +4132,7 @@ e = Jim_GetOpt_String( goi, &cp2, NULL ); cp = cp2; /* now does target type exist */ - for( x = 0 ; target_types[x] ; x++ ){ + for ( x = 0 ; target_types[x] ; x++ ){ if ( 0 == strcmp( cp, target_types[x]->name ) ){ /* found */ break; @@ -4140,7 +4140,7 @@ } if ( target_types[x] == NULL ){ Jim_SetResult_sprintf( goi->interp, "Unknown target type %s, try one of ", cp ); - for( x = 0 ; target_types[x] ; x++ ){ + for ( x = 0 ; target_types[x] ; x++ ){ if ( target_types[x+1] ){ Jim_AppendStrings( goi->interp, Jim_GetResult(goi->interp), @@ -4313,7 +4313,7 @@ return JIM_ERR; } Jim_SetResult( goi.interp, Jim_NewListObj( goi.interp, NULL, 0 ) ); - for( x = 0 ; target_types[x] ; x++ ){ + for ( x = 0 ; target_types[x] ; x++ ){ Jim_ListAppendElement( goi.interp, Jim_GetResult(goi.interp), Jim_NewStringObj( goi.interp, target_types[x]->name, -1 ) ); Modified: trunk/src/target/xscale.c =================================================================== --- trunk/src/target/xscale.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/target/xscale.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -1783,7 +1783,7 @@ * we can't enter User mode on an XScale (unpredictable), * but User shares registers with SYS */ - for(i = 1; i < 7; i++) + for (i = 1; i < 7; i++) { int valid = 1; @@ -1855,7 +1855,7 @@ * we can't enter User mode on an XScale (unpredictable), * but User shares registers with SYS */ - for(i = 1; i < 7; i++) + for (i = 1; i < 7; i++) { int dirty = 0; Modified: trunk/src/xsvf/xsvf.c =================================================================== --- trunk/src/xsvf/xsvf.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/src/xsvf/xsvf.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -366,7 +366,7 @@ LOG_DEBUG("%s %d", op_name, xsdrsize); - for( attempt=0; attempt<limit; ++attempt ) + for ( attempt=0; attempt<limit; ++attempt ) { scan_field_t field; @@ -836,7 +836,7 @@ if (limit < 1) limit = 1; - for( attempt=0; attempt<limit; ++attempt ) + for ( attempt=0; attempt<limit; ++attempt ) { scan_field_t field; Modified: trunk/testing/examples/PIC32/BlinkingLeds.c =================================================================== --- trunk/testing/examples/PIC32/BlinkingLeds.c 2009-06-23 22:36:56 UTC (rev 2359) +++ trunk/testing/examples/PIC32/BlinkingLeds.c 2009-06-23 22:37:21 UTC (rev 2360) @@ -11,11 +11,11 @@ while (1) { - for(i = 0; i < 500000; i++) + for (i = 0; i < 500000; i++) mPORTDToggleBits(BIT_0); - for(i = 0; i < 500000; i++) + for (i = 0; i < 500000; i++) mPORTDToggleBits(BIT_1); - for(i = 0; i < 500000; i++) + for (i = 0; i < 500000; i++) mPORTDToggleBits(BIT_2); } |