aboutsummaryrefslogtreecommitdiff
path: root/src/helper/command.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-05-13 16:51:00 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2021-04-18 15:35:03 +0100
commit6b5e77ada6520398f9a2135e43e60067bc072e27 (patch)
tree1e26a6055459b24ca469d8d040c850c326dfb98a /src/helper/command.c
parentfa23b1a71e4f1974791e90055c301f9bf124e835 (diff)
downloadriscv-openocd-6b5e77ada6520398f9a2135e43e60067bc072e27.zip
riscv-openocd-6b5e77ada6520398f9a2135e43e60067bc072e27.tar.gz
riscv-openocd-6b5e77ada6520398f9a2135e43e60067bc072e27.tar.bz2
helper/command: make script_debug() static
Now that all commands are executed through the common handler command_unknown(), the message about command execution is logged by command_unknown(). There is no need, for "native" commands (.jim_handler) at root level to log the message (again) by itself. Remove calls to script_debug() apart from command_unknown(). Make script_debug() static as only used in command.c. Change-Id: I9b2728b69e7643d6121c4b35a96bc825bcb5488d Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5676 Tested-by: jenkins Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
Diffstat (limited to 'src/helper/command.c')
-rw-r--r--src/helper/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index 630630f..a7990d4 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -180,7 +180,7 @@ extern struct command_context *global_cmd_ctx;
/* dump a single line to the log for the command.
* Do nothing in case we are not at debug level 3 */
-void script_debug(Jim_Interp *interp, unsigned int argc, Jim_Obj * const *argv)
+static void script_debug(Jim_Interp *interp, unsigned int argc, Jim_Obj * const *argv)
{
if (debug_level < LOG_LVL_DEBUG)
return;