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:
zwelch
2009-06-18 07:11:11 +00:00
parent 1840226d55
commit 86e4324f1b
28 changed files with 152 additions and 152 deletions

View File

@@ -94,7 +94,7 @@ typedef struct
{
tap_state_t from;
tap_state_t to;
u32 num_of_moves;
uint32_t num_of_moves;
tap_state_t paths[8];
}svf_statemove_t;
@@ -251,7 +251,7 @@ void svf_free_xxd_para(svf_xxr_para_t *para)
unsigned svf_get_mask_u32(int bitlen)
{
u32 bitmask;
uint32_t bitmask;
if (bitlen < 0)
{