From: Zachary T Welch Date: Fri, 13 Nov 2009 15:38:05 +0000 (-0800) Subject: lpc288x_flash_bank_t -> struct lpc288x_flash_bank X-Git-Tag: v0.4.0-rc1~750 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=12f83f0429a84168f8761a575a12c703025dd598 lpc288x_flash_bank_t -> struct lpc288x_flash_bank Remove misleading typedef and redundant suffix from struct lpc288x_flash_bank. --- diff --git a/src/flash/lpc288x.c b/src/flash/lpc288x.c index d681fbf9ea..fd8960013d 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 */ 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 506988f564..5a71ee08a2 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 */