From: Andreas Fritiofson Date: Sun, 18 Jan 2015 11:08:05 +0000 (+0100) Subject: armv4_5: Continue the change from uint32_t to uint8_t[4] for regs X-Git-Tag: v0.9.0-rc1~170 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=f2c85452cfa71d49b2eedf0cffe8acdd0babbf50;ds=sidebyside armv4_5: Continue the change from uint32_t to uint8_t[4] for regs Also remove an unrelated no-op cast. Change-Id: Ibeb6c72e5b0b0347abb568947a05a179661faf2d Signed-off-by: Andreas Fritiofson Reviewed-on: http://openocd.zylin.com/2473 Reviewed-by: Paul Fertser Tested-by: jenkins --- diff --git a/src/target/arm.h b/src/target/arm.h index 88b5902ea8..b93952c0ee 100644 --- a/src/target/arm.h +++ b/src/target/arm.h @@ -202,7 +202,7 @@ struct arm_reg { enum arm_mode mode; struct target *target; struct arm *arm; - uint32_t value; + uint8_t value[4]; }; struct reg_cache *arm_build_reg_cache(struct target *target, struct arm *arm); diff --git a/src/target/armv4_5.c b/src/target/armv4_5.c index dc77af2b15..69674cbf1e 100644 --- a/src/target/armv4_5.c +++ b/src/target/armv4_5.c @@ -605,10 +605,10 @@ struct reg_cache *arm_build_reg_cache(struct target *target, struct arm *arm) reg_arch_info[i].target = target; reg_arch_info[i].arm = arm; - reg_list[i].name = (char *) arm_core_regs[i].name; + reg_list[i].name = arm_core_regs[i].name; reg_list[i].number = arm_core_regs[i].gdb_index; reg_list[i].size = 32; - reg_list[i].value = ®_arch_info[i].value; + reg_list[i].value = reg_arch_info[i].value; reg_list[i].type = &arm_reg_type; reg_list[i].arch_info = ®_arch_info[i]; reg_list[i].exist = true;