Finish transforming 'u32' to 'uint32_t'.
- Replace '\([^_]\)u32' with '\1uint32_t'. - Replace '^u32' with 'uint32_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2281 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -264,7 +264,7 @@ int interface_jtag_add_dr_scan(int in_num_fields, const scan_field_t *in_fields,
|
||||
void interface_jtag_add_dr_out(jtag_tap_t *target_tap,
|
||||
int in_num_fields,
|
||||
const int *num_bits,
|
||||
const u32 *value,
|
||||
const uint32_t *value,
|
||||
tap_state_t end_state)
|
||||
{
|
||||
/* count devices in bypass */
|
||||
@@ -449,7 +449,7 @@ int interface_jtag_add_reset(int req_trst, int req_srst)
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int interface_jtag_add_sleep(u32 us)
|
||||
int interface_jtag_add_sleep(uint32_t us)
|
||||
{
|
||||
/* allocate memory for a new list member */
|
||||
jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
|
||||
|
||||
Reference in New Issue
Block a user