summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:38:05 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:06 -0800
commit12f83f0429a84168f8761a575a12c703025dd598 (patch)
tree109a80c4f5bd4dc54053c378debb4a7900542a5f
parenta15d4cc75eb7bae55db5f6a156cd15918d574688 (diff)
downloadopenocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.tar.gz
openocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.tar.bz2
openocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.tar.xz
openocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.zip
lpc288x_flash_bank_t -> struct lpc288x_flash_bank
Remove misleading typedef and redundant suffix from struct lpc288x_flash_bank.
-rw-r--r--src/flash/lpc288x.c12
-rw-r--r--src/flash/lpc288x.h4
2 files changed, 8 insertions, 8 deletions
diff --git a/src/flash/lpc288x.c b/src/flash/lpc288x.c
index d681fbf9..fd896001 100644
--- a/src/flash/lpc288x.c
+++ b/src/flash/lpc288x.c
@@ -111,7 +111,7 @@ static uint32_t lpc288x_wait_status_busy(flash_bank_t *bank, int timeout)
/* Read device id register and fill in driver info structure */
static int lpc288x_read_part_info(struct flash_bank_s *bank)
{
- lpc288x_flash_bank_t *lpc288x_info = bank->driver_priv;
+ struct lpc288x_flash_bank *lpc288x_info = bank->driver_priv;
target_t *target = bank->target;
uint32_t cidr;
@@ -167,7 +167,7 @@ static int lpc288x_protect_check(struct flash_bank_s *bank)
/* flash_bank LPC288x 0 0 0 0 <target#> <cclk> */
FLASH_BANK_COMMAND_HANDLER(lpc288x_flash_bank_command)
{
- lpc288x_flash_bank_t *lpc288x_info;
+ struct lpc288x_flash_bank *lpc288x_info;
if (argc < 6)
{
@@ -175,7 +175,7 @@ FLASH_BANK_COMMAND_HANDLER(lpc288x_flash_bank_command)
return ERROR_FLASH_BANK_INVALID;
}
- lpc288x_info = malloc(sizeof(lpc288x_flash_bank_t));
+ lpc288x_info = malloc(sizeof(struct lpc288x_flash_bank));
bank->driver_priv = lpc288x_info;
/* part wasn't probed for info yet */
@@ -193,7 +193,7 @@ FLASH_BANK_COMMAND_HANDLER(lpc288x_flash_bank_command)
static void lpc288x_set_flash_clk(struct flash_bank_s *bank)
{
uint32_t clk_time;
- lpc288x_flash_bank_t *lpc288x_info = bank->driver_priv;
+ struct lpc288x_flash_bank *lpc288x_info = bank->driver_priv;
clk_time = (lpc288x_info->cclk / 66000) / 3;
target_write_u32(bank->target, F_CTRL, FC_CS | FC_WEN);
target_write_u32(bank->target, F_CLK_TIME, clk_time);
@@ -219,7 +219,7 @@ static void lpc288x_load_timer(int erase, struct target_s *target)
static uint32_t lpc288x_system_ready(struct flash_bank_s *bank)
{
- lpc288x_flash_bank_t *lpc288x_info = bank->driver_priv;
+ struct lpc288x_flash_bank *lpc288x_info = bank->driver_priv;
if (lpc288x_info->cidr == 0)
{
return ERROR_FLASH_BANK_NOT_PROBED;
@@ -405,7 +405,7 @@ static int lpc288x_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t of
static int lpc288x_probe(struct flash_bank_s *bank)
{
/* we only deal with LPC2888 so flash config is fixed */
- lpc288x_flash_bank_t *lpc288x_info = bank->driver_priv;
+ struct lpc288x_flash_bank *lpc288x_info = bank->driver_priv;
int retval;
if (lpc288x_info->cidr != 0)
diff --git a/src/flash/lpc288x.h b/src/flash/lpc288x.h
index 506988f5..5a71ee08 100644
--- a/src/flash/lpc288x.h
+++ b/src/flash/lpc288x.h
@@ -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 */