aboutsummaryrefslogtreecommitdiff
path: root/src/target/arm_adi_v5.c
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2015-12-06 23:58:40 +0100
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2015-12-29 20:32:25 +0000
commitff65aff3a6e1c58e948ec831eefcf8b277236fbd (patch)
tree7f3f2d93a11ae29f20dd5b81988b05a9ccf390f9 /src/target/arm_adi_v5.c
parente7d165f3dbff0fbe11f458becdccbb3d4fa8ccc4 (diff)
downloadriscv-openocd-ff65aff3a6e1c58e948ec831eefcf8b277236fbd.zip
riscv-openocd-ff65aff3a6e1c58e948ec831eefcf8b277236fbd.tar.gz
riscv-openocd-ff65aff3a6e1c58e948ec831eefcf8b277236fbd.tar.bz2
arm_adi_v5: Fix dap apsel confusing behaviour.
Make dap apsel without arguments show current state instead of changing to AP 0. Change-Id: I75ea10e3e1b8a067f2dc417ec6691dc7ceec1af6 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/3163 Tested-by: jenkins Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>
Diffstat (limited to 'src/target/arm_adi_v5.c')
-rw-r--r--src/target/arm_adi_v5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c
index a28bc15..26948a4 100644
--- a/src/target/arm_adi_v5.c
+++ b/src/target/arm_adi_v5.c
@@ -1541,7 +1541,7 @@ COMMAND_HANDLER(dap_apsel_command)
switch (CMD_ARGC) {
case 0:
- apsel = 0;
+ apsel = dap->apsel;
break;
case 1:
COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], apsel);