From 49e6c61bcc9a176119721c38004eca02b3e77f19 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Harboe?= Date: Wed, 9 Jun 2010 16:01:10 +0200 Subject: [PATCH] flash: flash erase_address takes unsigned arguments MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fixed bug where address was parsed as a signed, rather than unsigned it. Signed-off-by: Øyvind Harboe --- src/flash/nor/tcl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/flash/nor/tcl.c b/src/flash/nor/tcl.c index b3dbd7b8e..cf1ca4af1 100644 --- a/src/flash/nor/tcl.c +++ b/src/flash/nor/tcl.c @@ -199,8 +199,8 @@ COMMAND_HANDLER(handle_flash_erase_address_command) { struct flash_bank *p; int retval = ERROR_OK; - int address; - int length; + uint32_t address; + uint32_t length; bool do_pad = false; bool do_unlock = false; struct target *target = get_current_target(CMD_CTX); @@ -229,8 +229,8 @@ COMMAND_HANDLER(handle_flash_erase_address_command) return ERROR_COMMAND_SYNTAX_ERROR; } - COMMAND_PARSE_NUMBER(int, CMD_ARGV[0], address); - COMMAND_PARSE_NUMBER(int, CMD_ARGV[1], length); + COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], address); + COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], length); if (length <= 0) { -- 2.11.4.GIT