diff options
author | Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com> | 2018-04-12 11:57:44 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2018-04-15 22:18:50 -0500 |
commit | ecde3f4f211aaac2ff72e1fd0004c6faac1f7634 (patch) | |
tree | 5cd14e814a6beea6281bdb12c1bb0e4003569625 | |
parent | 00521231c8260a5c5ec3389aa79394708a9b98ce (diff) | |
download | skiboot-ecde3f4f211aaac2ff72e1fd0004c6faac1f7634.zip skiboot-ecde3f4f211aaac2ff72e1fd0004c6faac1f7634.tar.gz skiboot-ecde3f4f211aaac2ff72e1fd0004c6faac1f7634.tar.bz2 |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libflash/blocklevel.c b/libflash/blocklevel.c index 0076683..f3fad69 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"); |