lpc288x_flash_bank_t -> struct lpc288x_flash_bank

Remove misleading typedef and redundant suffix from struct lpc288x_flash_bank.
This commit is contained in:
Zachary T Welch
2009-11-13 07:38:05 -08:00
parent a15d4cc75e
commit 12f83f0429
2 changed files with 8 additions and 8 deletions

View File

@@ -23,7 +23,7 @@
#include "flash.h"
typedef struct lpc288x_flash_bank_s
struct lpc288x_flash_bank
{
uint32_t working_area;
uint32_t working_area_size;
@@ -34,6 +34,6 @@ typedef struct lpc288x_flash_bank_s
uint32_t cclk;
uint32_t sector_size_break;
} lpc288x_flash_bank_t;
};
#endif /* lpc288x_H */