From: Øyvind Harboe Date: Sun, 18 Jul 2010 21:12:25 +0000 (+0200) Subject: cortex a8: mem_ap_read_buf_u32() error handling X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=221ce7c89b2c8792be4099687ed23f04f4e5018d;p=fw%2Fopenocd cortex a8: mem_ap_read_buf_u32() error handling Signed-off-by: Øyvind Harboe --- diff --git a/src/target/cortex_a8.c b/src/target/cortex_a8.c index 0f5c74289..a2f3ea060 100644 --- a/src/target/cortex_a8.c +++ b/src/target/cortex_a8.c @@ -191,7 +191,9 @@ static int cortex_a8_read_regs_through_mem(struct target *target, uint32_t addre return retval; dap_ap_select(swjdp, swjdp_memoryap); - mem_ap_read_buf_u32(swjdp, (uint8_t *)(®file[1]), 4*15, address); + retval = mem_ap_read_buf_u32(swjdp, (uint8_t *)(®file[1]), 4*15, address); + if (retval != ERROR_OK) + return retval; dap_ap_select(swjdp, swjdp_debugap); return retval;