diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 07:07:59 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 07:07:59 +0000 |
commit | f876d5e9c769a288faa7fd14b7bf373363542aab (patch) | |
tree | 86ad76530f7d44c69471813c4c727f107b018eb5 /src/flash/stm32x.h | |
parent | c18947b947064e7eceed8047c42d4c8dfd8ae964 (diff) | |
download | riscv-openocd-f876d5e9c769a288faa7fd14b7bf373363542aab.zip riscv-openocd-f876d5e9c769a288faa7fd14b7bf373363542aab.tar.gz riscv-openocd-f876d5e9c769a288faa7fd14b7bf373363542aab.tar.bz2 |
Transform 'u16' to 'uint16_t'
- Replace '\([^_]\)u16' with '\1uint16_t'.
- Replace '^u16' with 'uint16_t'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2277 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/stm32x.h')
-rw-r--r-- | src/flash/stm32x.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/flash/stm32x.h b/src/flash/stm32x.h index 864141b..ef35d85 100644 --- a/src/flash/stm32x.h +++ b/src/flash/stm32x.h @@ -27,9 +27,9 @@ typedef struct stm32x_options_s { - u16 RDP; - u16 user_options; - u16 protection[4]; + uint16_t RDP; + uint16_t user_options; + uint16_t protection[4]; } stm32x_options_t; typedef struct stm32x_flash_bank_s |