Browse Source

Nicolas Pitre nico at cam.org spelling

git-svn-id: svn://svn.berlios.de/openocd/trunk@1384 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
oharboe 15 years ago
parent
commit
630af1be56
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/flash/nand.c

+ 2
- 2
src/flash/nand.c View File

@@ -530,7 +530,7 @@ int nand_probe(struct nand_device_s *device)
device->address_cycles = 5;
else
{
LOG_ERROR("BUG: small page NAND device with more than 32 GiB encountered");
LOG_ERROR("BUG: large page NAND device with more than 32 GiB encountered");
device->address_cycles = 6;
}
}
@@ -1345,7 +1345,7 @@ int handle_nand_write_command(struct command_context_s *cmd_ctx, char *cmd, char
oob = NULL;
page = NULL;
duration_stop_measure(&duration, &duration_text);
command_print(cmd_ctx, "wrote file %s to NAND flash %s at offset 0x%8.8x in %s",
command_print(cmd_ctx, "wrote file %s to NAND flash %s up to offset 0x%8.8x in %s",
args[1], args[0], offset, duration_text);
free(duration_text);
duration_text = NULL;


Loading…
Cancel
Save