From 86e4324f1bd4cd8135cb857e4b940b1f2e872dc3 Mon Sep 17 00:00:00 2001 From: zwelch Date: Thu, 18 Jun 2009 07:11:11 +0000 Subject: 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 --- src/jtag/jtag.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/jtag/jtag.h') diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h index a7c6b2f9..368cd726 100644 --- a/src/jtag/jtag.h +++ b/src/jtag/jtag.h @@ -156,15 +156,15 @@ struct jtag_tap_s /// Is this TAP currently enabled? bool enabled; int ir_length; /**< size of instruction register */ - u32 ir_capture_value; + uint32_t ir_capture_value; uint8_t* expected; /**< Capture-IR expected value */ - u32 ir_capture_mask; + uint32_t ir_capture_mask; uint8_t* expected_mask; /**< Capture-IR expected mask */ - u32 idcode; + uint32_t idcode; /**< device identification code */ /// Array of expected identification codes */ - u32* expected_ids; + uint32_t* expected_ids; /// Number of expected identification codes uint8_t expected_ids_cnt; @@ -593,7 +593,7 @@ extern tap_state_t jtag_set_end_state(tap_state_t state); * **/ extern tap_state_t jtag_get_end_state(void); -extern void jtag_add_sleep(u32 us); +extern void jtag_add_sleep(uint32_t us); /** @@ -648,7 +648,7 @@ extern int jtag_srst_asserted(int* srst_asserted); */ extern void jtag_check_value_mask(scan_field_t *field, uint8_t *value, uint8_t *mask); -extern void jtag_sleep(u32 us); +extern void jtag_sleep(uint32_t us); /* * The JTAG subsystem defines a number of error codes, @@ -691,7 +691,7 @@ extern void jtag_sleep(u32 us); * clocking data back in. Patches gladly accepted! */ extern void jtag_add_dr_out(jtag_tap_t* tap, - int num_fields, const int* num_bits, const u32* value, + int num_fields, const int* num_bits, const uint32_t* value, tap_state_t end_state); -- cgit v1.2.3-18-g5258