armv4_5: remove core_type check in mcr/mrc cmd
authorSpencer Oliver <ntfreak@users.sourceforge.net>
Sun, 28 Feb 2010 23:06:49 +0000 (23:06 +0000)
committerSpencer Oliver <ntfreak@users.sourceforge.net>
Sun, 28 Feb 2010 23:06:49 +0000 (23:06 +0000)
core_type check is not required as the core function will be
null for cores that do not support the mcr/mrc functions.

Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
src/target/armv4_5.c

index 048878574b0099c17b49d26751532cbc74195d9a..1e9a2965e35c92250ace2fd671f2e1e3c497808c 100644 (file)
@@ -840,13 +840,6 @@ static int jim_mcrmrc(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
                return JIM_ERR;
        }
 
-       if (arm->core_type == ARM_MODE_THREAD)
-       {
-               /* armv7m not supported */
-               LOG_ERROR("Unsupported Command");
-               return ERROR_OK;
-       }
-
        if ((argc < 6) || (argc > 7)) {
                /* FIXME use the command name to verify # params... */
                LOG_ERROR("%s: wrong number of arguments", __func__);