From: OpenOCD-Gerrit <ope...@us...> - 2022-03-12 09:39:51
|
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 2b17a128841c9431f17aaad844f416eccd24f63f (commit) from 4906176c77d70e89a7e1f7da54e4088c5966207f (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 2b17a128841c9431f17aaad844f416eccd24f63f Author: Nishanth Menon <nm...@ti...> Date: Mon Oct 4 08:34:42 2021 -0500 tcl/target/ti_k3: Remove args from m3 and m4_up args serve no purpose, so drop them. Signed-off-by: Nishanth Menon <nm...@ti...> Change-Id: I136394307016453d576cf524b0f02227ba26ef8a Reviewed-on: https://review.openocd.org/c/openocd/+/6626 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/tcl/target/ti_k3.cfg b/tcl/target/ti_k3.cfg index d2aa53160..325ee0004 100644 --- a/tcl/target/ti_k3.cfg +++ b/tcl/target/ti_k3.cfg @@ -152,7 +152,7 @@ cti create $_CTINAME.m3 -dap $_CHIPNAME.dap -ap-num 7 -baseaddr [lindex $CM3_CTI target create $_TARGETNAME.m3 cortex_m -dap $_CHIPNAME.dap -ap-num 7 -defer-examine $_TARGETNAME.m3 configure -event reset-assert { } -proc m3_up { args } { +proc m3_up {} { # To access M3, we need to enable the JTAG access for the same. # Ensure Power-AP unlocked $::_CHIPNAME.dap apreg 3 [lindex $::_m3_ap_unlock_offsets 0] 0x00190000 @@ -245,7 +245,7 @@ if { $_mcu_m4_cores != 0 } { target create $_TARGETNAME.m4 cortex_m -dap $_CHIPNAME.dap -ap-num 8 -defer-examine $_TARGETNAME.m4 configure -event reset-assert { } - proc m4_up { args } { + proc m4_up {} { # To access M4, we need to enable the JTAG access for the same. # Ensure Power-AP unlocked $::_CHIPNAME.dap apreg 3 [lindex $::_m4_ap_unlock_offsets 0] 0x00190000 ----------------------------------------------------------------------- Summary of changes: tcl/target/ti_k3.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |