target: remove handling of target's deprecated_name
We do not have anymore any deprecated target name. Drop the code to handle deprecated target names and the placehold in struct target_type. This patch is separated from the patch that drops the remaining deprecated target names to be ready to revert this if there is any need in the future. Change-Id: I96fca7ffa39d8292f81e79f115ea45c4a30035d7 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/6087 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
parent
64b486e74f
commit
113f949ac1
|
@ -5678,15 +5678,6 @@ static int target_create(Jim_GetOptInfo *goi)
|
|||
/* found */
|
||||
break;
|
||||
}
|
||||
|
||||
/* check for deprecated name */
|
||||
if (target_types[x]->deprecated_name) {
|
||||
if (0 == strcmp(cp, target_types[x]->deprecated_name)) {
|
||||
/* found */
|
||||
LOG_WARNING("target name is deprecated use: \'%s\'", target_types[x]->name);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (target_types[x] == NULL) {
|
||||
Jim_SetResultFormatted(goi->interp, "Unknown target type %s, try one of ", cp);
|
||||
|
|
|
@ -40,7 +40,6 @@ struct target_type {
|
|||
* field directly, use target_type_name() instead.
|
||||
*/
|
||||
const char *name;
|
||||
const char *deprecated_name;
|
||||
|
||||
/* poll current target status */
|
||||
int (*poll)(struct target *target);
|
||||
|
|
Loading…
Reference in New Issue