diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 07:10:25 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 07:10:25 +0000 |
commit | 1840226d555b9863a2315bcc6218671fdfa2af32 (patch) | |
tree | 689d43b9d64d4adee7d5e77cab12645ceb707da5 /src/flash/lpc2000.h | |
parent | 3c2eabd20f5182c53f0bfb0c6f2a9f2595434e87 (diff) | |
download | riscv-openocd-1840226d555b9863a2315bcc6218671fdfa2af32.zip riscv-openocd-1840226d555b9863a2315bcc6218671fdfa2af32.tar.gz riscv-openocd-1840226d555b9863a2315bcc6218671fdfa2af32.tar.bz2 |
Transform 'u32' to 'uint32_t' in src/flash.
- Replace '\([^_]\)u32' with '\1uint32_t'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2280 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/lpc2000.h')
-rw-r--r-- | src/flash/lpc2000.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/lpc2000.h b/src/flash/lpc2000.h index a047381..9613835 100644 --- a/src/flash/lpc2000.h +++ b/src/flash/lpc2000.h @@ -26,12 +26,12 @@ typedef struct lpc2000_flash_bank_s { int variant; struct working_area_s *iap_working_area; - u32 cclk; + uint32_t cclk; int cmd51_dst_boundary; int cmd51_can_256b; int cmd51_can_8192b; int calc_checksum; - u32 cmd51_max_buffer; + uint32_t cmd51_max_buffer; } lpc2000_flash_bank_t; enum lpc2000_status_codes |