From 46fc1d57ac9462fd788277609707a379c7a406cb Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 08:44:30 -0800 Subject: working_area_t -> struct working_area Remove misleading typedef and redundant suffix from struct working_area. --- src/target/armv7m.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/target/armv7m.c') diff --git a/src/target/armv7m.c b/src/target/armv7m.c index 05668880..4a6869fa 100644 --- a/src/target/armv7m.c +++ b/src/target/armv7m.c @@ -588,7 +588,7 @@ int armv7m_init_arch_info(target_t *target, struct armv7m_common *armv7m) int armv7m_checksum_memory(struct target_s *target, uint32_t address, uint32_t count, uint32_t* checksum) { - working_area_t *crc_algorithm; + struct working_area *crc_algorithm; struct armv7m_algorithm armv7m_info; struct reg_param reg_params[2]; int retval; @@ -671,7 +671,7 @@ int armv7m_checksum_memory(struct target_s *target, int armv7m_blank_check_memory(struct target_s *target, uint32_t address, uint32_t count, uint32_t* blank) { - working_area_t *erase_check_algorithm; + struct working_area *erase_check_algorithm; struct reg_param reg_params[3]; struct armv7m_algorithm armv7m_info; int retval; -- cgit v1.2.3