diff options
author | Eric Wetzel <thewetzel@gmail.com> | 2011-01-05 14:24:54 -0500 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-01-05 21:46:12 +0100 |
commit | a665ef716a9a90c30fb15e1f979845b3438a7251 (patch) | |
tree | 9f5b7f916393d21b2644541bc5e755f0233f96b1 /src/flash/nand/davinci.c | |
parent | 0cd84000daab056dea61eb9d60cca538a3716acd (diff) | |
download | openocd+libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.tar.gz openocd+libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.tar.bz2 openocd+libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.tar.xz openocd+libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.zip |
nit: do not add \n at end of LOG_ERROR
Fixed in many other places, and submitted in response to Øyvind's invitation.
Diffstat (limited to 'src/flash/nand/davinci.c')
-rw-r--r-- | src/flash/nand/davinci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nand/davinci.c b/src/flash/nand/davinci.c index af39dbf9..b7fe66ea 100644 --- a/src/flash/nand/davinci.c +++ b/src/flash/nand/davinci.c @@ -263,7 +263,7 @@ static int davinci_write_page(struct nand_device *nand, uint32_t page, /* Always write both data and OOB ... we are not "raw" I/O! */ if (!data) { - LOG_ERROR("Missing NAND data; try 'nand raw_access enable'\n"); + LOG_ERROR("Missing NAND data; try 'nand raw_access enable'"); return ERROR_NAND_OPERATION_FAILED; } |