This is an automated email from Gerrit. "Evgeniy Naydanov <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9481
-- gerrit commit 9f963f086abea783dbdd6cefbb27849a75cdb957 Author: Evgeniy Naydanov <[email protected]> Date: Fri Feb 20 18:52:58 2026 +0300 target/arm7_9_common: drop the call to `target_set_examined()` This is a valid change, since: * The flag is set in the type-independent code on success and reset on failure. * Neither `arm7_9_examine`, nor `feroceon_examine` include `target_was_examined()` in the respective call graphs (see the review comment for details). Change-Id: I77e297a7a07f16660e13bc956b2633247cea10b1 Signed-off-by: Evgeniy Naydanov <[email protected]> diff --git a/src/target/arm7_9_common.c b/src/target/arm7_9_common.c index 06e76ac0d2..9e285b1b00 100644 --- a/src/target/arm7_9_common.c +++ b/src/target/arm7_9_common.c @@ -2672,7 +2672,6 @@ int arm7_9_examine(struct target *target) &arm7_9->jtag_info, arm7_9->arm.etm); - target_set_examined(target); } retval = embeddedice_setup(target); --
