summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com>2018-04-12 11:57:44 +0530
committerStewart Smith <stewart@linux.ibm.com>2018-04-15 22:18:50 -0500
commitecde3f4f211aaac2ff72e1fd0004c6faac1f7634 (patch)
tree5cd14e814a6beea6281bdb12c1bb0e4003569625
parent00521231c8260a5c5ec3389aa79394708a9b98ce (diff)
downloadtalos-skiboot-ecde3f4f211aaac2ff72e1fd0004c6faac1f7634.tar.gz
talos-skiboot-ecde3f4f211aaac2ff72e1fd0004c6faac1f7634.zip
libflash/blocklevel: Add missing newline to debug messages
Signed-off-by: Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r--libflash/blocklevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libflash/blocklevel.c b/libflash/blocklevel.c
index 0076683a..f3fad69e 100644
--- a/libflash/blocklevel.c
+++ b/libflash/blocklevel.c
@@ -127,7 +127,7 @@ int blocklevel_read(struct blocklevel_device *bl, uint64_t pos, void *buf, uint6
ecc_protection = ecc_protected(bl, pos, len, &ecc_start);
- FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s",
+ FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s\n",
__func__, pos, len, ecc_protection ?
(ecc_protection == -1 ? "partial" : "yes") : "no");
@@ -216,7 +216,7 @@ int blocklevel_write(struct blocklevel_device *bl, uint64_t pos, const void *buf
ecc_protection = ecc_protected(bl, pos, len, &ecc_start);
- FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s",
+ FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s\n",
__func__, pos, len, ecc_protection ?
(ecc_protection == -1 ? "partial" : "yes") : "no");
OpenPOWER on IntegriCloud