summaryrefslogtreecommitdiff
path: root/src/target/etm.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-11-25 16:38:08 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-11-25 16:38:08 -0800
commitb715a81f5b95144118d8f946d4191f1dc844783a (patch)
treeb3c553cd43e489f00105d4ba52bccafa1705375f /src/target/etm.c
parentac06d41fc723c264e989673be16f9f21a1896518 (diff)
downloadopenocd+libswd-b715a81f5b95144118d8f946d4191f1dc844783a.tar.gz
openocd+libswd-b715a81f5b95144118d8f946d4191f1dc844783a.tar.bz2
openocd+libswd-b715a81f5b95144118d8f946d4191f1dc844783a.tar.xz
openocd+libswd-b715a81f5b95144118d8f946d4191f1dc844783a.zip
target: target_get_name() --> target_type_name()
There are two names that may matter on a per-target basis. One is a per-instance name (for example, "at91sam7s.cpu"). The other is the name of its type (for example, "arm7tdmi"), which is shared among multiple targets. Currently target_get_name() returns the type name, which is misleading and is rarely appropriate for target diagnostics. Rename that as target_type_name(). Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/etm.c')
-rw-r--r--src/target/etm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/etm.c b/src/target/etm.c
index 4e7f9172..2ea7345d 100644
--- a/src/target/etm.c
+++ b/src/target/etm.c
@@ -1374,7 +1374,7 @@ COMMAND_HANDLER(handle_etm_config_command)
arm = target_to_arm(target);
if (!is_arm(arm)) {
command_print(CMD_CTX, "target '%s' is '%s'; not an ARM",
- target->cmd_name, target_get_name(target));
+ target->cmd_name, target_type_name(target));
return ERROR_FAIL;
}