diff options
author | Liviu Ionescu <ilg@livius.net> | 2018-06-12 23:58:56 +0300 |
---|---|---|
committer | Liviu Ionescu <ilg@livius.net> | 2018-06-12 23:58:56 +0300 |
commit | 45921eecd832f6529cbb2facc9d5c0e7a04472b5 (patch) | |
tree | 39e4a816f09e15207e67132e02c5a6bea0f89cce | |
parent | 8022a315a60d883a12126b6ee2848261ed74f4df (diff) | |
download | riscv-openocd-45921eecd832f6529cbb2facc9d5c0e7a04472b5.zip riscv-openocd-45921eecd832f6529cbb2facc9d5c0e7a04472b5.tar.gz riscv-openocd-45921eecd832f6529cbb2facc9d5c0e7a04472b5.tar.bz2 |
target/riscv: fix trailing spaces
-rw-r--r-- | src/target/riscv/riscv.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/target/riscv/riscv.c b/src/target/riscv/riscv.c index 576a4c7..f6a1a8d 100644 --- a/src/target/riscv/riscv.c +++ b/src/target/riscv/riscv.c @@ -1530,17 +1530,17 @@ extern __COMMAND_HANDLER(handle_common_semihosting_resumable_exit_command); extern __COMMAND_HANDLER(handle_common_semihosting_cmdline); /* - * To be noted that RISC-V targets use the same semihosting commands as + * To be noted that RISC-V targets use the same semihosting commands as * ARM targets. - * - * The main reason is compatibility with existing tools. For example the - * Eclipse OpenOCD/SEGGER J-Link/QEMU plug-ins have several widgets to - * configure semihosting, which generate commands like `arm semihosting - * enable`. - * A secondary reason is the fact that the protocol used is exactly the - * one specified by ARM. If RISC-V will ever define its own semihosting - * protocol, then a command like `riscv semihosting enable` will make - * sense, but for now all semihosting commands are prefixed with `arm`. + * + * The main reason is compatibility with existing tools. For example the + * Eclipse OpenOCD/SEGGER J-Link/QEMU plug-ins have several widgets to + * configure semihosting, which generate commands like `arm semihosting + * enable`. + * A secondary reason is the fact that the protocol used is exactly the + * one specified by ARM. If RISC-V will ever define its own semihosting + * protocol, then a command like `riscv semihosting enable` will make + * sense, but for now all semihosting commands are prefixed with `arm`. */ static const struct command_registration arm_exec_command_handlers[] = { { |