From: openocd-gerrit <ope...@us...> - 2024-11-23 13:48:13
|
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 c5babec7949d3fc23fd3fe43d5452897b7c94553 (commit) from f3aeb3d67619510a2601e2a1055479b84a47fbf3 (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 c5babec7949d3fc23fd3fe43d5452897b7c94553 Author: Antonio Borneo <bor...@gm...> Date: Sat Nov 9 19:08:25 2024 +0100 target: x86_32: make x86_32_common_read_io() static The function is not referenced outside the file. Make it static. Change-Id: Ic2552c040b6b46c0334851a4fc0fdaa400e11e4c Signed-off-by: Antonio Borneo <bor...@gm...> Reviewed-on: https://review.openocd.org/c/openocd/+/8548 Tested-by: jenkins diff --git a/src/target/x86_32_common.c b/src/target/x86_32_common.c index 2c60b9f7e..8cca9a5e9 100644 --- a/src/target/x86_32_common.c +++ b/src/target/x86_32_common.c @@ -677,7 +677,7 @@ int x86_32_common_write_memory(struct target *t, target_addr_t addr, return retval; } -int x86_32_common_read_io(struct target *t, uint32_t addr, +static int x86_32_common_read_io(struct target *t, uint32_t addr, uint32_t size, uint8_t *buf) { struct x86_32_common *x86_32 = target_to_x86_32(t); diff --git a/src/target/x86_32_common.h b/src/target/x86_32_common.h index 7392447a6..e23274769 100644 --- a/src/target/x86_32_common.h +++ b/src/target/x86_32_common.h @@ -309,8 +309,6 @@ int x86_32_common_read_memory(struct target *t, target_addr_t addr, uint32_t size, uint32_t count, uint8_t *buf); int x86_32_common_write_memory(struct target *t, target_addr_t addr, uint32_t size, uint32_t count, const uint8_t *buf); -int x86_32_common_read_io(struct target *t, uint32_t addr, - uint32_t size, uint8_t *buf); int x86_32_common_write_io(struct target *t, uint32_t addr, uint32_t size, const uint8_t *buf); int x86_32_common_add_breakpoint(struct target *t, struct breakpoint *bp); ----------------------------------------------------------------------- Summary of changes: src/target/x86_32_common.c | 2 +- src/target/x86_32_common.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) hooks/post-receive -- Main OpenOCD repository |