diff options
author | Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com> | 2018-02-08 00:01:14 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2018-02-07 21:22:22 -0600 |
commit | 7912f9750bfcb77d463d4854328c6a470516d8b0 (patch) | |
tree | 35ff4e323349b466cf126fcf8204665955f4c3ca /libstb/tpm_chip.c | |
parent | b90b08fc2f9a9e6b54be8f50b804dedb8a52f1e8 (diff) | |
download | blackbird-skiboot-7912f9750bfcb77d463d4854328c6a470516d8b0.tar.gz blackbird-skiboot-7912f9750bfcb77d463d4854328c6a470516d8b0.zip |
libstb/tpm_chip: Add missing new line to print messages.
Signed-off-by: Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'libstb/tpm_chip.c')
-rw-r--r-- | libstb/tpm_chip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstb/tpm_chip.c b/libstb/tpm_chip.c index e3d220aa..2858cafb 100644 --- a/libstb/tpm_chip.c +++ b/libstb/tpm_chip.c @@ -145,7 +145,7 @@ int tpm_register_chip(struct dt_node *node, struct tpm_dev *dev, * TpmLogMgr code (or friends) has been updated, the changes * need to be applied to skiboot as well. */ - prlog(PR_ERR, "eventlog init failed: tpm%d rc=%d", + prlog(PR_ERR, "eventlog init failed: tpm%d rc=%d\n", tpm->id, rc); goto disable; } @@ -181,7 +181,7 @@ int tpm_init(void) tpm_i2c_nuvoton_probe(); if (list_empty(&tpm_list)) { - prlog(PR_INFO, "no compatible tpm device found!"); + prlog(PR_INFO, "no compatible tpm device found!\n"); return -1; } return 0; |