aboutsummaryrefslogtreecommitdiff
path: root/src/target/nds32_cmd.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2019-05-06 01:03:52 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2020-05-09 14:39:29 +0100
commit4f459660a9dab3877f6f27127e565dd2b49b4ec7 (patch)
treefa7cd2c56bb304ee35ac1ec3a758f8fb88260167 /src/target/nds32_cmd.c
parente66bb9d3121eef35c312997aacb401847249a5cb (diff)
downloadriscv-openocd-4f459660a9dab3877f6f27127e565dd2b49b4ec7.zip
riscv-openocd-4f459660a9dab3877f6f27127e565dd2b49b4ec7.tar.gz
riscv-openocd-4f459660a9dab3877f6f27127e565dd2b49b4ec7.tar.bz2
coding style: avoid unnecessary line continuations
Line continuation, adding a backslash as last char of the line, is requested in multi-line macro definition, but is not necessary in the rest of C code. Remove it where present. Identified by checkpatch script from Linux kernel v5.1 using the command find src/ -type f -exec ./tools/scripts/checkpatch.pl \ -q --types LINE_CONTINUATIONS -f {} \; Change-Id: Id0c69e93456731717a7b290b16580e9f8ae741bc Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5619 Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Tested-by: jenkins
Diffstat (limited to 'src/target/nds32_cmd.c')
-rw-r--r--src/target/nds32_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/nds32_cmd.c b/src/target/nds32_cmd.c
index 88d8b45..7bf7e60 100644
--- a/src/target/nds32_cmd.c
+++ b/src/target/nds32_cmd.c
@@ -1007,7 +1007,7 @@ static const struct command_registration nds32_exec_command_handlers[] = {
.handler = handle_nds32_global_stop_command,
.mode = COMMAND_ANY,
.usage = "['on'|'off']",
- .help = "turn on/off global stop. After turning on, every load/store" \
+ .help = "turn on/off global stop. After turning on, every load/store"
"instructions will be stopped to check memory access.",
},
{
@@ -1015,7 +1015,7 @@ static const struct command_registration nds32_exec_command_handlers[] = {
.handler = handle_nds32_soft_reset_halt_command,
.mode = COMMAND_ANY,
.usage = "['on'|'off']",
- .help = "as issuing rest-halt, to use soft-reset-halt or not." \
+ .help = "as issuing rest-halt, to use soft-reset-halt or not."
"the feature is for backward-compatible.",
},
{