From: openocd-gerrit <ope...@us...> - 2023-11-11 18:06:16
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via a9080087d82688043ca216d50926228d09631297 (commit) from 0f261188f1161a685b22c1e3d3e07b3666a31971 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a9080087d82688043ca216d50926228d09631297 Author: Erhan Kurubas <erh...@es...> Date: Sat Oct 28 20:58:08 2023 +0200 target/breakpoints: make breakpoint_watchpoint_remove_all static Fixes below Sparse tool warning. warning: symbol 'breakpoint_watchpoint_remove_all' was not declared. Should it be static? Signed-off-by: Erhan Kurubas <erh...@es...> Change-Id: I4af1d5aa54abcb45f746b877513ba0b5fccbeb47 Reviewed-on: https://review.openocd.org/c/openocd/+/7955 Reviewed-by: Tomas Vanek <va...@fb...> Reviewed-by: Antonio Borneo <bor...@gm...> Tested-by: jenkins Reviewed-by: Jan Matyas <jan...@co...> Reviewed-by: Marek Vrbka <mar...@co...> diff --git a/src/target/breakpoints.c b/src/target/breakpoints.c index 07d0a7371..d9c12f523 100644 --- a/src/target/breakpoints.c +++ b/src/target/breakpoints.c @@ -425,7 +425,7 @@ static int watchpoint_remove_all_internal(struct target *target) return retval; } -int breakpoint_watchpoint_remove_all(struct target *target, enum breakpoint_watchpoint bp_wp) +static int breakpoint_watchpoint_remove_all(struct target *target, enum breakpoint_watchpoint bp_wp) { assert(bp_wp == BREAKPOINT || bp_wp == WATCHPOINT); int retval = ERROR_OK; ----------------------------------------------------------------------- Summary of changes: src/target/breakpoints.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |