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/pic32mx.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/pic32mx.h')
-rw-r--r-- | src/flash/pic32mx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/pic32mx.h b/src/flash/pic32mx.h index da102c07..49c8f5fa 100644 --- a/src/flash/pic32mx.h +++ b/src/flash/pic32mx.h @@ -105,8 +105,8 @@ typedef struct pic32mx_flash_bank_s #define NVMKEY2 0x556699AA typedef struct pic32mx_mem_layout_s { - u32 sector_start; - u32 sector_size; + uint32_t sector_start; + uint32_t sector_size; } pic32mx_mem_layout_t; #endif /* PIC32MX_H */ |