This is an automated email from Gerrit. Michael Schwingen (spam-open...@discworld.dascon.de) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5136
-- gerrit commit 72d31044bae6f319d688d70a5239d72accc99acc Author: Michael Schwingen <mich...@schwingen.org> Date: Thu Apr 25 22:05:55 2019 +0200 fix XScale register access: since b5964191f0d2fc3ace607af001df3d57cbfbaf2b, all xscale-specific registers were missing, breaking config scripts. Change-Id: Ia56f3ca17500ba54bd08f417e9a5aaaa8a1be8c4 Signed-off-by: Michael Schwingen <spam-open...@discworld.dascon.de> diff --git a/src/target/xscale.c b/src/target/xscale.c index 34c5f00..23dd4f5 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -2895,6 +2895,7 @@ static void xscale_build_reg_cache(struct target *target) (*cache_p)->reg_list[i].size = 32; (*cache_p)->reg_list[i].arch_info = &arch_info[i]; (*cache_p)->reg_list[i].type = &xscale_reg_type; + (*cache_p)->reg_list[i].exist = true; arch_info[i] = xscale_reg_arch_info[i]; arch_info[i].target = target; } -- _______________________________________________ OpenOCD-devel mailing list OpenOCD-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openocd-devel