diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 07:38:58 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:07 -0800 |
commit | 40273967bf535aefb3eaec9367c50e7799b079bb (patch) | |
tree | 1369ccea23ddff7acc775b2806c04d4e58e77537 | |
parent | 9059f9f28e4d88c9608ef92723bbd493e106ba67 (diff) | |
download | openocd+libswd-40273967bf535aefb3eaec9367c50e7799b079bb.tar.gz openocd+libswd-40273967bf535aefb3eaec9367c50e7799b079bb.tar.bz2 openocd+libswd-40273967bf535aefb3eaec9367c50e7799b079bb.tar.xz openocd+libswd-40273967bf535aefb3eaec9367c50e7799b079bb.zip |
stm32x_options_t -> struct stm32x_options
Remove misleading typedef and redundant suffix from struct stm32x_options.
-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 51114667..60117627 100644 --- a/src/flash/stm32x.h +++ b/src/flash/stm32x.h @@ -25,16 +25,16 @@ #include "flash.h" -typedef struct stm32x_options_s +struct stm32x_options { uint16_t RDP; uint16_t user_options; uint16_t protection[4]; -} stm32x_options_t; +}; typedef struct stm32x_flash_bank_s { - stm32x_options_t option_bytes; + struct stm32x_options option_bytes; working_area_t *write_algorithm; int ppage_size; int probed; |