Commit 44596ebf authored by Arvind Yadav's avatar Arvind Yadav Committed by Doug Ledford

IB/ocrdma: pr_err() strings should end with newlines

pr_err() messages should end with a new-line to avoid other messages
being concatenated.
Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Reviewed-by: default avatarYuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent d23a8baf
...@@ -1093,7 +1093,7 @@ static int ocrdma_mbx_cmd(struct ocrdma_dev *dev, struct ocrdma_mqe *mqe) ...@@ -1093,7 +1093,7 @@ static int ocrdma_mbx_cmd(struct ocrdma_dev *dev, struct ocrdma_mqe *mqe)
rsp = &mqe->u.rsp; rsp = &mqe->u.rsp;
if (cqe_status || ext_status) { if (cqe_status || ext_status) {
pr_err("%s() cqe_status=0x%x, ext_status=0x%x,", pr_err("%s() cqe_status=0x%x, ext_status=0x%x,\n",
__func__, cqe_status, ext_status); __func__, cqe_status, ext_status);
if (rsp) { if (rsp) {
/* This is for embedded cmds. */ /* This is for embedded cmds. */
......
...@@ -658,7 +658,7 @@ static ssize_t ocrdma_dbgfs_ops_write(struct file *filp, ...@@ -658,7 +658,7 @@ static ssize_t ocrdma_dbgfs_ops_write(struct file *filp,
if (reset) { if (reset) {
status = ocrdma_mbx_rdma_stats(dev, true); status = ocrdma_mbx_rdma_stats(dev, true);
if (status) { if (status) {
pr_err("Failed to reset stats = %d", status); pr_err("Failed to reset stats = %d\n", status);
goto err; goto err;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment