From bf74007d37e9487c719ac74b80462cf23254ebbc Mon Sep 17 00:00:00 2001 From: Antonio Borneo Date: Tue, 6 Sep 2022 00:24:39 +0200 Subject: [PATCH] log: remove unused set_log_output() The function set_log_output() has never been used after the drop of eCos build with commit 39650e2273bc ("ecosboard: delete bit-rotted eCos code") in 2012. Drop it! Change-Id: I070b688061776c7ced5db18f738d78a4a7623726 Signed-off-by: Antonio Borneo Reviewed-on: https://review.openocd.org/c/openocd/+/7164 Reviewed-by: Tomas Vanek Tested-by: jenkins --- src/helper/log.c | 6 ------ src/helper/log.h | 1 - 2 files changed, 7 deletions(-) diff --git a/src/helper/log.c b/src/helper/log.c index f3872b541..b49c9af94 100644 --- a/src/helper/log.c +++ b/src/helper/log.c @@ -295,12 +295,6 @@ void log_exit(void) log_output = NULL; } -int set_log_output(struct command_context *cmd_ctx, FILE *output) -{ - log_output = output; - return ERROR_OK; -} - /* add/remove log callback handler */ int log_add_callback(log_callback_fn fn, void *priv) { diff --git a/src/helper/log.h b/src/helper/log.h index da1e652df..ee71bf03f 100644 --- a/src/helper/log.h +++ b/src/helper/log.h @@ -62,7 +62,6 @@ __attribute__ ((format (PRINTF_ATTRIBUTE_FORMAT, 5, 6))); */ void log_init(void); void log_exit(void); -int set_log_output(struct command_context *cmd_ctx, FILE *output); int log_register_commands(struct command_context *cmd_ctx); -- 2.30.2