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/+/9482
-- gerrit commit 3d141692ba67fa533a57858fb5783bbb6d7188a3 Author: Evgeniy Naydanov <[email protected]> Date: Fri Feb 20 19:05:03 2026 +0300 target/dsp563xx: 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. * `dsp563xx_examine` does not include `target_was_examined()` in it's call graph (see the review comment for details). Change-Id: Ifdd79eb12e2a6337f8224469c8621484fa14c25d Signed-off-by: Evgeniy Naydanov <[email protected]> diff --git a/src/target/dsp563xx.c b/src/target/dsp563xx.c index d79d542823..b381962ed4 100644 --- a/src/target/dsp563xx.c +++ b/src/target/dsp563xx.c @@ -915,8 +915,6 @@ static int dsp563xx_examine(struct target *target) } if (!target_was_examined(target)) { - target_set_examined(target); - /* examine core and chip derivate number */ chip = (target->tap->idcode>>12) & 0x3ff; /* core number 0 means DSP563XX */ --
