From: openocd-gerrit <ope...@us...> - 2024-11-23 13:47:28
|
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 a34d4b8cb41d99a55ae4dd4ee9f13478a34337a7 (commit) from 4da8f6d27a076a4a64c0d334cb647fdde08938a1 (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 a34d4b8cb41d99a55ae4dd4ee9f13478a34337a7 Author: Antonio Borneo <bor...@gm...> Date: Sat Nov 9 18:54:14 2024 +0100 pld: make get_pld_device_by_num() static The function is not referenced outside the file. Make it static. Change-Id: I5f2a2c70085b9158df8806432bb9ed09bb256ab5 Signed-off-by: Antonio Borneo <bor...@gm...> Reviewed-on: https://review.openocd.org/c/openocd/+/8546 Tested-by: jenkins diff --git a/src/pld/pld.c b/src/pld/pld.c index 81fb0c463..edd779613 100644 --- a/src/pld/pld.c +++ b/src/pld/pld.c @@ -28,7 +28,7 @@ static struct pld_driver *pld_drivers[] = { static struct pld_device *pld_devices; -struct pld_device *get_pld_device_by_num(int num) +static struct pld_device *get_pld_device_by_num(int num) { struct pld_device *p; int i = 0; diff --git a/src/pld/pld.h b/src/pld/pld.h index 5e2fcd20c..a6e2e0fc8 100644 --- a/src/pld/pld.h +++ b/src/pld/pld.h @@ -54,7 +54,6 @@ struct pld_device { int pld_register_commands(struct command_context *cmd_ctx); -struct pld_device *get_pld_device_by_num(int num); struct pld_device *get_pld_device_by_name(const char *name); struct pld_device *get_pld_device_by_name_or_numstr(const char *str); ----------------------------------------------------------------------- Summary of changes: src/pld/pld.c | 2 +- src/pld/pld.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |