diff options
Diffstat (limited to 'src/flash/nand/orion.c')
-rw-r--r-- | src/flash/nand/orion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/nand/orion.c b/src/flash/nand/orion.c index 00c95192..5b0c9642 100644 --- a/src/flash/nand/orion.c +++ b/src/flash/nand/orion.c @@ -121,13 +121,13 @@ NAND_DEVICE_COMMAND_HANDLER(orion_nand_device_command) uint8_t ale, cle; if (CMD_ARGC != 3) { - LOG_ERROR("arguments must be: <target_id> <NAND_address>\n"); + LOG_ERROR("arguments must be: <target_id> <NAND_address>"); return ERROR_NAND_DEVICE_INVALID; } hw = calloc(1, sizeof(*hw)); if (!hw) { - LOG_ERROR("no memory for nand controller\n"); + LOG_ERROR("no memory for nand controller"); return ERROR_NAND_DEVICE_INVALID; } |