From f429898adb1ef16ae4219743b6ae4e67ac8668a2 Mon Sep 17 00:00:00 2001 From: dragonmux Date: Thu, 28 Jul 2022 18:28:25 +0100 Subject: [PATCH] rp: Removed rp_detach as the function serves no purpose --- src/target/rp.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/target/rp.c b/src/target/rp.c index cdc4d5b..8ba7e22 100644 --- a/src/target/rp.c +++ b/src/target/rp.c @@ -486,11 +486,6 @@ static bool rp_attach(target *t) return true; } -static void rp_detach(target *t) -{ - cortexm_detach(t); -} - bool rp_probe(target *t) { /* Check bootrom magic*/ @@ -514,7 +509,6 @@ bool rp_probe(target *t) t->driver = RP_ID; t->target_options |= CORTEXM_TOPT_INHIBIT_NRST; t->attach = rp_attach; - t->detach = rp_detach; target_add_commands(t, rp_cmd_list, RP_ID); return true; }