This is an automated email from Gerrit.

Antonio Borneo ([email protected]) just uploaded a new patch set to 
Gerrit, which you can find at http://openocd.zylin.com/6087

-- gerrit

commit f6b656b4cc96d642afdff3fa2b66e0f2b0e151cd
Author: Antonio Borneo <[email protected]>
Date:   Sun Nov 1 00:14:52 2020 +0100

    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 <[email protected]>

diff --git a/src/target/target.c b/src/target/target.c
index cab84b0..0543c11 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -5673,15 +5673,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);
diff --git a/src/target/target_type.h b/src/target/target_type.h
index 4bdea72..0f3df00 100644
--- a/src/target/target_type.h
+++ b/src/target/target_type.h
@@ -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);

-- 


_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to