From: OpenOCD-Gerrit <ope...@us...> - 2021-12-11 17:34:02
|
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 8a448573fb2804a9abe3e0922648dbbf99224aa9 (commit) from b1de11616099fe97f3534fa0f268c10dfd6ecf2b (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 8a448573fb2804a9abe3e0922648dbbf99224aa9 Author: Antonio Borneo <bor...@gm...> Date: Thu Nov 11 23:11:03 2021 +0100 cortex_m: remove last references to debugport_init() The function debugport_init() has never existed in OpenOCD code, but few comments erroneously references it in place of the existing function ahbap_debugport_init(). Commit 00dbc185ee56 ("arm_adi_v5: Split ahbap_debugport_init") splits the function ahbap_debugport_init() in dap_dp_init() and mem_ap_init(), but did not removed all the incorrect comments about debugport_init(). Few of such comments has been removed in later patches. Remove the last comment that references debugport_init(). Change-Id: Ibd1f125475386e5653340fedf706903a0ee15897 Signed-off-by: Antonio Borneo <bor...@gm...> Reviewed-on: https://review.openocd.org/c/openocd/+/6694 Tested-by: jenkins diff --git a/src/target/cortex_m.c b/src/target/cortex_m.c index 649ee32f2..5605dd080 100644 --- a/src/target/cortex_m.c +++ b/src/target/cortex_m.c @@ -2292,7 +2292,6 @@ int cortex_m_examine(struct target *target) armv7m->debug_ap = dap_ap(swjdp, cortex_m->apsel); } - /* Leave (only) generic DAP stuff for debugport_init(); */ armv7m->debug_ap->memaccess_tck = 8; retval = mem_ap_init(armv7m->debug_ap); ----------------------------------------------------------------------- Summary of changes: src/target/cortex_m.c | 1 - 1 file changed, 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |