aboutsummaryrefslogtreecommitdiff
path: root/src/target/target_type.h
diff options
context:
space:
mode:
authorEvgeniy Naydanov <evgeniy.naydanov@syntacore.com>2024-01-12 16:29:32 +0300
committerAntonio Borneo <borneo.antonio@gmail.com>2024-01-28 14:18:54 +0000
commit1b0ffa97ea90c09e96b068450644e462102c10ae (patch)
tree46f5a26901a23977b90d380c4cdeab54d0b006bd /src/target/target_type.h
parent67675323e1ea09b5d1a4250bf58163103c85b844 (diff)
downloadriscv-openocd-1b0ffa97ea90c09e96b068450644e462102c10ae.zip
riscv-openocd-1b0ffa97ea90c09e96b068450644e462102c10ae.tar.gz
riscv-openocd-1b0ffa97ea90c09e96b068450644e462102c10ae.tar.bz2
target: get_gdb_arch() accepts target via const pointer
The function in question does not need to change target state. It is a target-type-dependant function, however, IMHO, it is safe to assume that any target type would not need to change type-independant state of a target to figure out the arch. Change-Id: I607cb3aee6529cd5a97bc1200a0226cf6ef43caf Signed-off-by: Evgeniy Naydanov <evgeniy.naydanov@syntacore.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8093 Tested-by: jenkins Reviewed-by: Jan Matyas <jan.matyas@codasip.com> Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'src/target/target_type.h')
-rw-r--r--src/target/target_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/target_type.h b/src/target/target_type.h
index 678ce0f..bc42c2d 100644
--- a/src/target/target_type.h
+++ b/src/target/target_type.h
@@ -83,7 +83,7 @@ struct target_type {
* if dynamic allocation is used for this value, it must be managed by
* the target, ideally by caching the result for subsequent calls.
*/
- const char *(*get_gdb_arch)(struct target *target);
+ const char *(*get_gdb_arch)(const struct target *target);
/**
* Target register access for GDB. Do @b not call this function