From 01b10d65bfcc6eb9a3994b20b1342389edda2df0 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 07:39:03 -0800 Subject: [PATCH] stm32x_mem_layout_t -> struct stm32x_mem_layout Remove misleading typedef and redundant suffix from struct stm32x_mem_layout. --- src/flash/stm32x.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flash/stm32x.h b/src/flash/stm32x.h index 471b633f96..9e1e5b1cce 100644 --- a/src/flash/stm32x.h +++ b/src/flash/stm32x.h @@ -93,9 +93,9 @@ struct stm32x_flash_bank #define KEY1 0x45670123 #define KEY2 0xCDEF89AB -typedef struct stm32x_mem_layout_s { +struct stm32x_mem_layout { uint32_t sector_start; uint32_t sector_size; -} stm32x_mem_layout_t; +}; #endif /* STM32X_H */ -- 2.30.2