target: mem_ap: drop return from void function

Checkpatch triggers the error

	ERROR:RETURN_VOID: void function return statements are not
	generally useful

Fix it!

Change-Id: I72d9fb8242d6a91c0aa481d5d023f0359c76a5ec
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/8492
Tested-by: jenkins
Reviewed-by: zapb <dev@zapb.de>
This commit is contained in:
Antonio Borneo 2024-09-16 10:45:17 +02:00
parent 39f024900e
commit 537793bb24
1 changed files with 0 additions and 1 deletions

View File

@ -75,7 +75,6 @@ static void mem_ap_deinit_target(struct target *target)
free(target->private_config);
free(target->arch_info);
return;
}
static int mem_ap_arch_state(struct target *target)