2
0
mirror of git://git.code.sf.net/p/openocd/code synced 2025-07-24 10:57:11 +10:00

stm32x_options_t -> struct stm32x_options

Remove misleading typedef and redundant suffix from struct stm32x_options.
This commit is contained in:
Zachary T Welch 2009-11-13 07:38:58 -08:00
parent 9059f9f28e
commit 40273967bf

View File

@ -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;