target/cortex_m.c: vector_catch command checks if a target is examined
[fw/openocd] / src / target / armv7a_cache_l2x.c
index 0aa69538285be99df681109056123012edba9d53..3607a5122d85c00fc59a9642dc141420f1ae2c82 100644 (file)
@@ -180,12 +180,12 @@ static int arm7a_handle_l2x_cache_info_command(struct command_invocation *cmd,
                (armv7a_cache->outer_cache);
 
        if (armv7a_cache->info == -1) {
-               command_print(cmd->ctx, "cache not yet identified");
+               command_print(cmd, "cache not yet identified");
                return ERROR_OK;
        }
 
-       command_print(cmd->ctx,
-                     "L2 unified cache Base Address 0x%" PRIx32 ", %" PRId32 " ways",
+       command_print(cmd,
+                     "L2 unified cache Base Address 0x%" PRIx32 ", %" PRIu32 " ways",
                      l2x_cache->base, l2x_cache->way);
 
        return ERROR_OK;
@@ -312,7 +312,7 @@ COMMAND_HANDLER(armv7a_l2x_cache_conf_cmd)
        if (CMD_ARGC != 2)
                return ERROR_COMMAND_SYNTAX_ERROR;
 
-       /* command_print(CMD_CTX, "%s %s", CMD_ARGV[0], CMD_ARGV[1]); */
+       /* command_print(CMD, "%s %s", CMD_ARGV[0], CMD_ARGV[1]); */
        COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], base);
        COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], way);
 
@@ -332,7 +332,7 @@ static const struct command_registration arm7a_l2x_cache_commands[] = {
                .name = "info",
                .handler = arm7a_l2x_cache_info_command,
                .mode = COMMAND_ANY,
-               .help = "print cache realted information",
+               .help = "print cache related information",
                .usage = "",
        },
        {