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/lpc288x.h | |
parent | 3c2eabd20f5182c53f0bfb0c6f2a9f2595434e87 (diff) | |
download | openocd_libswd-1840226d555b9863a2315bcc6218671fdfa2af32.tar.gz openocd_libswd-1840226d555b9863a2315bcc6218671fdfa2af32.tar.bz2 openocd_libswd-1840226d555b9863a2315bcc6218671fdfa2af32.tar.xz openocd_libswd-1840226d555b9863a2315bcc6218671fdfa2af32.zip |
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/lpc288x.h')
-rw-r--r-- | src/flash/lpc288x.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/flash/lpc288x.h b/src/flash/lpc288x.h index 522d0eb4..506988f5 100644 --- a/src/flash/lpc288x.h +++ b/src/flash/lpc288x.h @@ -25,15 +25,15 @@ typedef struct lpc288x_flash_bank_s { - u32 working_area; - u32 working_area_size; + uint32_t working_area; + uint32_t working_area_size; /* chip id register */ - u32 cidr; + uint32_t cidr; char * target_name; - u32 cclk; + uint32_t cclk; - u32 sector_size_break; + uint32_t sector_size_break; } lpc288x_flash_bank_t; #endif /* lpc288x_H */ |