Browse Source

NOR: fix diagnostic

The "NOR: last_addr also needs correction when checking alignment"
patch omitted a necessary update to the key diagnostic; fix.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
tags/v0.4.0-rc2
David Brownell 14 years ago
parent
commit
fb4239866c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/flash/nor/core.c

+ 1
- 1
src/flash/nor/core.c View File

@@ -408,7 +408,7 @@ static int flash_iterate_address_range(struct target *target,
LOG_ERROR("address range 0x%8.8x .. 0x%8.8x "
"is not sector-aligned",
(unsigned) (c->base + addr),
(unsigned) (last_addr - 1));
(unsigned) (c->base + last_addr - 1));
return ERROR_FLASH_DST_BREAKS_ALIGNMENT;
}



Loading…
Cancel
Save