aboutsummaryrefslogtreecommitdiff
path: root/src/target/xscale.c
diff options
context:
space:
mode:
authorPaul Fertser <fercerpav@gmail.com>2019-04-01 04:42:23 +0200
committerTomas Vanek <vanekt@fbl.cz>2019-05-14 19:35:41 +0100
commit54ecec2e85d7ffd8aeaa9cd1f76a5a983ff20391 (patch)
tree891d9ce2f52fca59ebe9366433b6cfa92952d375 /src/target/xscale.c
parentcff570b22f15494948313e4f0c4c28fae74887ad (diff)
downloadriscv-openocd-54ecec2e85d7ffd8aeaa9cd1f76a5a983ff20391.zip
riscv-openocd-54ecec2e85d7ffd8aeaa9cd1f76a5a983ff20391.tar.gz
riscv-openocd-54ecec2e85d7ffd8aeaa9cd1f76a5a983ff20391.tar.bz2
target/armv4_5_cache: change prototype of armv4_5_handle_cache_info_command()
To prepare for handling TCL return values consistently, all calls to command_print/command_print_sameline should be ready to switch to CMD as first parameter. Change prototype of armv4_5_handle_cache_info_command() to pass CMD instead of CMD_CTX. This change was part of http://openocd.zylin.com/1815 from Paul Fertser and has been extracted and rebased to simplify the review. Change-Id: Ib6ab3ec2fc6504c2a0635b654697a4b6e12a3750 Signed-off-by: Paul Fertser <fercerpav@gmail.com> Signed-off-by: Tomas Vanek <vanekt@fbl.cz> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5068 Tested-by: jenkins
Diffstat (limited to 'src/target/xscale.c')
-rw-r--r--src/target/xscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/xscale.c b/src/target/xscale.c
index bc79c7f..a090c4b 100644
--- a/src/target/xscale.c
+++ b/src/target/xscale.c
@@ -3090,7 +3090,7 @@ COMMAND_HANDLER(xscale_handle_cache_info_command)
if (retval != ERROR_OK)
return retval;
- return armv4_5_handle_cache_info_command(CMD_CTX, &xscale->armv4_5_mmu.armv4_5_cache);
+ return armv4_5_handle_cache_info_command(CMD, &xscale->armv4_5_mmu.armv4_5_cache);
}
static int xscale_virt2phys(struct target *target,