summaryrefslogtreecommitdiff
path: root/src/target
diff options
context:
space:
mode:
Diffstat (limited to 'src/target')
-rw-r--r--src/target/target.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/target/target.c b/src/target/target.c
index 18044692..20e82319 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -2682,11 +2682,14 @@ static int handle_virt2phys_command(command_context_t *cmd_ctx,
if (argc != 1)
return ERROR_COMMAND_SYNTAX_ERROR;
- target_t *target = get_current_target(cmd_ctx);
- u32 va = strtoul(args[0], NULL, 0);
+ u32 va;
+ int retval = parse_u32(args[0], &va);
+ if (ERROR_OK != retval)
+ return retval;
u32 pa;
- int retval = target->type->virt2phys(target, va, &pa);
+ target_t *target = get_current_target(cmd_ctx);
+ retval = target->type->virt2phys(target, va, &pa);
if (retval == ERROR_OK)
command_print(cmd_ctx, "Physical address 0x%08x", pa);