Browse Source

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>
tags/v0.5.0-rc1
Spencer Oliver 14 years ago
parent
commit
409e23e39b
1 changed files with 0 additions and 7 deletions
  1. +0
    -7
      src/target/armv4_5.c

+ 0
- 7
src/target/armv4_5.c View 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__);


Loading…
Cancel
Save