Browse Source

armv4_5_algorithm_t -> struct armv4_5_algorithm

Remove misleading typedef and redundant suffix from struct armv4_5_algorithm.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
15e8e45308
11 changed files with 15 additions and 15 deletions
  1. +1
    -1
      src/flash/aduc702x.c
  2. +1
    -1
      src/flash/arm_nandio.c
  3. +2
    -2
      src/flash/cfi.c
  4. +1
    -1
      src/flash/ecos.c
  5. +1
    -1
      src/flash/lpc2000.c
  6. +1
    -1
      src/flash/lpc2900.c
  7. +1
    -1
      src/flash/str7x.c
  8. +1
    -1
      src/flash/str9x.c
  9. +3
    -3
      src/target/arm7_9_common.c
  10. +1
    -1
      src/target/armv4_5.c
  11. +2
    -2
      src/target/armv4_5.h

+ 1
- 1
src/flash/aduc702x.c View File

@@ -164,7 +164,7 @@ static int aduc702x_write_block(struct flash_bank_s *bank, uint8_t *buffer, uint
working_area_t *source;
uint32_t address = bank->base + offset;
struct reg_param reg_params[6];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
int retval = ERROR_OK;

if (((count%2)!=0)||((offset%2)!=0))


+ 1
- 1
src/flash/arm_nandio.c View File

@@ -42,7 +42,7 @@
int arm_nandwrite(struct arm_nand_data *nand, uint8_t *data, int size)
{
target_t *target = nand->target;
armv4_5_algorithm_t algo;
struct armv4_5_algorithm algo;
armv4_5_common_t *armv4_5 = target->arch_info;
struct reg_param reg_params[3];
uint32_t target_buf;


+ 2
- 2
src/flash/cfi.c View File

@@ -1021,7 +1021,7 @@ static int cfi_intel_write_block(struct flash_bank_s *bank, uint8_t *buffer, uin
struct cfi_flash_bank *cfi_info = bank->driver_priv;
target_t *target = bank->target;
struct reg_param reg_params[7];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
working_area_t *source;
uint32_t buffer_size = 32768;
uint32_t write_command_val, busy_pattern_val, error_pattern_val;
@@ -1266,7 +1266,7 @@ static int cfi_spansion_write_block(struct flash_bank_s *bank, uint8_t *buffer,
struct cfi_spansion_pri_ext *pri_ext = cfi_info->pri_ext;
target_t *target = bank->target;
struct reg_param reg_params[10];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
working_area_t *source;
uint32_t buffer_size = 32768;
uint32_t status;


+ 1
- 1
src/flash/ecos.c View File

@@ -207,7 +207,7 @@ static int runCode(struct ecosflash_flash_bank *info,
target_t *target = info->target;

struct reg_param reg_params[3];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
armv4_5_info.common_magic = ARMV4_5_COMMON_MAGIC;
armv4_5_info.core_mode = ARMV4_5_MODE_SVC;
armv4_5_info.core_state = ARMV4_5_STATE_ARM;


+ 1
- 1
src/flash/lpc2000.c View File

@@ -241,7 +241,7 @@ static int lpc2000_iap_call(flash_bank_t *bank, int code, uint32_t param_table[5
target_t *target = bank->target;
struct mem_param mem_params[2];
struct reg_param reg_params[5];
armv4_5_algorithm_t armv4_5_info; /* for LPC2000 */
struct armv4_5_algorithm armv4_5_info; /* for LPC2000 */
armv7m_algorithm_t armv7m_info; /* for LPC1700 */
uint32_t status_code;
uint32_t iap_entry_point = 0; /* to make compiler happier */


+ 1
- 1
src/flash/lpc2900.c View File

@@ -1314,7 +1314,7 @@ static int lpc2900_write(struct flash_bank_s *bank, uint8_t *buffer,
if( warea )
{
struct reg_param reg_params[5];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;

/* We can use target mode. Download the algorithm. */
retval = target_write_buffer( target,


+ 1
- 1
src/flash/str7x.c View File

@@ -316,7 +316,7 @@ static int str7x_write_block(struct flash_bank_s *bank, uint8_t *buffer, uint32_
working_area_t *source;
uint32_t address = bank->base + offset;
struct reg_param reg_params[6];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
int retval = ERROR_OK;

uint32_t str7x_flash_write_code[] = {


+ 1
- 1
src/flash/str9x.c View File

@@ -354,7 +354,7 @@ static int str9x_write_block(struct flash_bank_s *bank,
working_area_t *source;
uint32_t address = bank->base + offset;
struct reg_param reg_params[4];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
int retval = ERROR_OK;

uint32_t str9x_flash_write_code[] = {


+ 3
- 3
src/target/arm7_9_common.c View File

@@ -2690,7 +2690,7 @@ int arm7_9_bulk_write_memory(target_t *target, uint32_t address, uint32_t count,
}
}

armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
struct reg_param reg_params[1];

armv4_5_info.common_magic = ARMV4_5_COMMON_MAGIC;
@@ -2724,7 +2724,7 @@ int arm7_9_bulk_write_memory(target_t *target, uint32_t address, uint32_t count,
int arm7_9_checksum_memory(struct target_s *target, uint32_t address, uint32_t count, uint32_t* checksum)
{
working_area_t *crc_algorithm;
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
struct reg_param reg_params[2];
int retval;

@@ -2809,7 +2809,7 @@ int arm7_9_blank_check_memory(struct target_s *target, uint32_t address, uint32_
{
working_area_t *erase_check_algorithm;
struct reg_param reg_params[3];
armv4_5_algorithm_t armv4_5_info;
struct armv4_5_algorithm armv4_5_info;
int retval;
uint32_t i;



+ 1
- 1
src/target/armv4_5.c View File

@@ -546,7 +546,7 @@ static int armv4_5_run_algorithm_completion(struct target_s *target, uint32_t ex
int armv4_5_run_algorithm_inner(struct target_s *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_params, uint32_t entry_point, uint32_t exit_point, int timeout_ms, void *arch_info, int (*run_it)(struct target_s *target, uint32_t exit_point, int timeout_ms, void *arch_info))
{
struct armv4_5_common_s *armv4_5 = target_to_armv4_5(target);
armv4_5_algorithm_t *armv4_5_algorithm_info = arch_info;
struct armv4_5_algorithm *armv4_5_algorithm_info = arch_info;
enum armv4_5_state core_state = armv4_5->core_state;
enum armv4_5_mode core_mode = armv4_5->core_mode;
uint32_t context[17];


+ 2
- 2
src/target/armv4_5.h View File

@@ -119,13 +119,13 @@ static inline bool is_arm(struct arm *arm)
return arm && arm->common_magic == ARMV4_5_COMMON_MAGIC;
}

typedef struct armv4_5_algorithm_s
struct armv4_5_algorithm
{
int common_magic;

enum armv4_5_mode core_mode;
enum armv4_5_state core_state;
} armv4_5_algorithm_t;
};

typedef struct armv4_5_core_reg_s
{


Loading…
Cancel
Save