aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2023-06-12 09:00:22 -0700
committerGitHub <noreply@github.com>2023-06-12 09:00:22 -0700
commit8f81655256b44a7bcebe28f45dc74e60f974a9af (patch)
treea208cf2b8906d85d185489710649dd4ba8950512
parent973c72887c67f0772a875b7e756d66927be22c28 (diff)
parent166b68c1b0784adf547b78189a314953210981bb (diff)
downloadriscv-openocd-8f81655256b44a7bcebe28f45dc74e60f974a9af.zip
riscv-openocd-8f81655256b44a7bcebe28f45dc74e60f974a9af.tar.gz
riscv-openocd-8f81655256b44a7bcebe28f45dc74e60f974a9af.tar.bz2
Merge pull request #864 from riscv/prototypes
target/riscv: Remove unnecessary prototypes.
-rw-r--r--src/target/riscv/riscv.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/target/riscv/riscv.h b/src/target/riscv/riscv.h
index a9dedbb..9669e32 100644
--- a/src/target/riscv/riscv.h
+++ b/src/target/riscv/riscv.h
@@ -352,22 +352,12 @@ int riscv_openocd_step(
int handle_breakpoints
);
-int riscv_openocd_assert_reset(struct target *target);
-int riscv_openocd_deassert_reset(struct target *target);
-
/*** RISC-V Interface ***/
bool riscv_supports_extension(struct target *target, char letter);
/* Returns XLEN for the given (or current) hart. */
unsigned riscv_xlen(const struct target *target);
-int riscv_xlen_of_hart(const struct target *target);
-
-/* Sets the current hart, which is the hart that will actually be used when
- * issuing debug commands. */
-int riscv_set_current_hartid(struct target *target, int hartid);
-int riscv_select_current_hart(struct target *target);
-int riscv_current_hartid(const struct target *target);
/*** Support functions for the RISC-V 'RTOS', which provides multihart support
* without requiring multiple targets. */