Skip to content

Commit

Permalink
fix XScale register access
Browse files Browse the repository at this point in the history
since b596419, all XScale-specific registers were missing, breaking
config scripts.

Change-Id: Ia56f3ca17500ba54bd08f417e9a5aaaa8a1be8c4
Signed-off-by: Michael Schwingen <[email protected]>
Reviewed-on: http:https://openocd.zylin.com/5136
Tested-by: jenkins
Reviewed-by: Tomas Vanek <[email protected]>
  • Loading branch information
Michael Schwingen authored and thinkfat committed Jun 12, 2019
1 parent 4847896 commit 7a27423
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/target/xscale.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 7a27423

Please sign in to comment.