armv4_5: remove core_type check in mcr/mrc cmd
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>
This commit is contained in:
parent
57fc63f9f1
commit
409e23e39b
|
@ -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__);
|
||||
|
|
Loading…
Reference in New Issue