This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/335
-- gerrit commit b3d47b2ac25ae9a018aa1af1209ad6488c149026 Author: Spencer Oliver <[email protected]> Date: Wed Jan 4 17:36:56 2012 +0000 stlink: update to use ERROR_COMMAND_SYNTAX_ERROR Change-Id: I21b669b09df65b56659d2f057cf389ba7b1cecfa Signed-off-by: Spencer Oliver <[email protected]> diff --git a/src/target/stm32_stlink.c b/src/target/stm32_stlink.c index baa6b74..c39d4c8 100644 --- a/src/target/stm32_stlink.c +++ b/src/target/stm32_stlink.c @@ -98,7 +98,7 @@ static int stm32_stlink_load_core_reg_u32(struct target *target, break; default: - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; } return ERROR_OK; @@ -184,7 +184,7 @@ static int stm32_stlink_store_core_reg_u32(struct target *target, break; default: - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; } return ERROR_OK; @@ -225,7 +225,7 @@ static int stm32_stlink_target_create(struct target *target, struct cortex_m3_common *cortex_m3 = calloc(1, sizeof(struct cortex_m3_common)); if (!cortex_m3) - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; stm32_stlink_init_arch_info(target, cortex_m3, target->tap); @@ -245,7 +245,7 @@ static int stm32_stlink_examine(struct target *target) if (target->tap->hasidcode == false) { LOG_ERROR("no IDCODE present on device"); - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; } if (!target_was_examined(target)) { @@ -566,10 +566,10 @@ static int stm32_stlink_read_memory(struct target *target, uint32_t address, struct stlink_interface_s *stlink_if = target_to_stlink(target); if (!count || !buffer) - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; if (size != 4) { LOG_DEBUG("%s %x %d %d", __func__, address, size, count); - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; } while (count) { @@ -602,10 +602,10 @@ static int stm32_stlink_write_memory(struct target *target, uint32_t address, struct stlink_interface_s *stlink_if = target_to_stlink(target); if (!count || !buffer) - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; if (size != 4) { LOG_DEBUG("%s %x %d %d", __func__, address, size, count); - return ERROR_INVALID_ARGUMENTS; + return ERROR_COMMAND_SYNTAX_ERROR; } while (count) { -- ------------------------------------------------------------------------------ Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure access to virtual desktops. With this all-in-one solution, easily deploy virtual desktops for less than the cost of PCs and save 60% on VDI infrastructure costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
