diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-12-04 20:19:49 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-12-04 20:19:49 -0800 |
commit | c2cc677056f8b383ff8f88ed8a16f1aa4b530ae2 (patch) | |
tree | 708ec72f1d118c92c74ec306b0e93c92ffde7a6c /src/flash | |
parent | 340e2eb7629fc1fdb6d2ead2952982584abdcefa (diff) | |
download | riscv-openocd-c2cc677056f8b383ff8f88ed8a16f1aa4b530ae2.zip riscv-openocd-c2cc677056f8b383ff8f88ed8a16f1aa4b530ae2.tar.gz riscv-openocd-c2cc677056f8b383ff8f88ed8a16f1aa4b530ae2.tar.bz2 |
ARM: rename armv4_5_algorithm as arm_algorithm
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/arm_nandio.c | 4 | ||||
-rw-r--r-- | src/flash/nor/aduc702x.c | 2 | ||||
-rw-r--r-- | src/flash/nor/cfi.c | 4 | ||||
-rw-r--r-- | src/flash/nor/ecos.c | 2 | ||||
-rw-r--r-- | src/flash/nor/lpc2000.c | 2 | ||||
-rw-r--r-- | src/flash/nor/lpc2900.c | 2 | ||||
-rw-r--r-- | src/flash/nor/str7x.c | 2 | ||||
-rw-r--r-- | src/flash/nor/str9x.c | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/src/flash/arm_nandio.c b/src/flash/arm_nandio.c index 12c4b2f..67619d5 100644 --- a/src/flash/arm_nandio.c +++ b/src/flash/arm_nandio.c @@ -93,7 +93,7 @@ int arm_code_to_working_area(struct target *target, int arm_nandwrite(struct arm_nand_data *nand, uint8_t *data, int size) { struct target *target = nand->target; - struct armv4_5_algorithm algo; + struct arm_algorithm algo; struct arm *armv4_5 = target->arch_info; struct reg_param reg_params[3]; uint32_t target_buf; @@ -177,7 +177,7 @@ int arm_nandwrite(struct arm_nand_data *nand, uint8_t *data, int size) int arm_nandread(struct arm_nand_data *nand, uint8_t *data, uint32_t size) { struct target *target = nand->target; - struct armv4_5_algorithm algo; + struct arm_algorithm algo; struct arm *armv4_5 = target->arch_info; struct reg_param reg_params[3]; uint32_t target_buf; diff --git a/src/flash/nor/aduc702x.c b/src/flash/nor/aduc702x.c index de362cb..57018bb 100644 --- a/src/flash/nor/aduc702x.c +++ b/src/flash/nor/aduc702x.c @@ -165,7 +165,7 @@ static int aduc702x_write_block(struct flash_bank *bank, uint8_t *buffer, uint32 struct working_area *source; uint32_t address = bank->base + offset; struct reg_param reg_params[6]; - struct armv4_5_algorithm armv4_5_info; + struct arm_algorithm armv4_5_info; int retval = ERROR_OK; if (((count%2)!=0)||((offset%2)!=0)) diff --git a/src/flash/nor/cfi.c b/src/flash/nor/cfi.c index cffc22a..1ab9341 100644 --- a/src/flash/nor/cfi.c +++ b/src/flash/nor/cfi.c @@ -1012,7 +1012,7 @@ static int cfi_intel_write_block(struct flash_bank *bank, uint8_t *buffer, uint3 struct cfi_flash_bank *cfi_info = bank->driver_priv; struct target *target = bank->target; struct reg_param reg_params[7]; - struct armv4_5_algorithm armv4_5_info; + struct arm_algorithm armv4_5_info; struct working_area *source; uint32_t buffer_size = 32768; uint32_t write_command_val, busy_pattern_val, error_pattern_val; @@ -1257,7 +1257,7 @@ static int cfi_spansion_write_block(struct flash_bank *bank, uint8_t *buffer, ui struct cfi_spansion_pri_ext *pri_ext = cfi_info->pri_ext; struct target *target = bank->target; struct reg_param reg_params[10]; - struct armv4_5_algorithm armv4_5_info; + struct arm_algorithm armv4_5_info; struct working_area *source; uint32_t buffer_size = 32768; uint32_t status; diff --git a/src/flash/nor/ecos.c b/src/flash/nor/ecos.c index b216903..b51e0a0 100644 --- a/src/flash/nor/ecos.c +++ b/src/flash/nor/ecos.c @@ -209,7 +209,7 @@ static int runCode(struct ecosflash_flash_bank *info, struct target *target = info->target; struct reg_param reg_params[3]; - struct armv4_5_algorithm armv4_5_info; + struct arm_algorithm armv4_5_info; armv4_5_info.common_magic = ARM_COMMON_MAGIC; armv4_5_info.core_mode = ARM_MODE_SVC; armv4_5_info.core_state = ARM_STATE_ARM; diff --git a/src/flash/nor/lpc2000.c b/src/flash/nor/lpc2000.c index 6888b76..0caf3e0 100644 --- a/src/flash/nor/lpc2000.c +++ b/src/flash/nor/lpc2000.c @@ -242,7 +242,7 @@ static int lpc2000_iap_call(struct flash_bank *bank, int code, uint32_t param_ta struct target *target = bank->target; struct mem_param mem_params[2]; struct reg_param reg_params[5]; - struct armv4_5_algorithm armv4_5_info; /* for LPC2000 */ + struct arm_algorithm armv4_5_info; /* for LPC2000 */ struct armv7m_algorithm armv7m_info; /* for LPC1700 */ uint32_t status_code; uint32_t iap_entry_point = 0; /* to make compiler happier */ diff --git a/src/flash/nor/lpc2900.c b/src/flash/nor/lpc2900.c index 1ef759e..ce74bbb 100644 --- a/src/flash/nor/lpc2900.c +++ b/src/flash/nor/lpc2900.c @@ -1302,7 +1302,7 @@ static int lpc2900_write(struct flash_bank *bank, uint8_t *buffer, if( warea ) { struct reg_param reg_params[5]; - struct armv4_5_algorithm armv4_5_info; + struct arm_algorithm armv4_5_info; /* We can use target mode. Download the algorithm. */ retval = target_write_buffer( target, diff --git a/src/flash/nor/str7x.c b/src/flash/nor/str7x.c index 45aa657..ef693e9 100644 --- a/src/flash/nor/str7x.c +++ b/src/flash/nor/str7x.c @@ -318,7 +318,7 @@ static int str7x_write_block(struct flash_bank *bank, uint8_t *buffer, uint32_t struct working_area *source; uint32_t address = bank->base + offset; struct reg_param reg_params[6]; - struct armv4_5_algorithm armv4_5_info; + struct arm_algorithm armv4_5_info; int retval = ERROR_OK; uint32_t str7x_flash_write_code[] = { diff --git a/src/flash/nor/str9x.c b/src/flash/nor/str9x.c index 95da3e2..9cddb50 100644 --- a/src/flash/nor/str9x.c +++ b/src/flash/nor/str9x.c @@ -356,7 +356,7 @@ static int str9x_write_block(struct flash_bank *bank, struct working_area *source; uint32_t address = bank->base + offset; struct reg_param reg_params[4]; - struct armv4_5_algorithm armv4_5_info; + struct arm_algorithm armv4_5_info; int retval = ERROR_OK; uint32_t str9x_flash_write_code[] = { |