public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] virtio/s390: add missing \n to end of dev_err message
@ 2016-09-27 20:08 Colin King
  2016-09-28  6:38 ` Christian Borntraeger
  0 siblings, 1 reply; 2+ messages in thread
From: Colin King @ 2016-09-27 20:08 UTC (permalink / raw)
  To: Christian Borntraeger, Cornelia Huck, Martin Schwidefsky,
	Heiko Carstens, linux-s390, virtualization, kvm
  Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trival fix, dev_err message is missing a \n, so add it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/s390/virtio/virtio_ccw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/s390/virtio/virtio_ccw.c b/drivers/s390/virtio/virtio_ccw.c
index 8688ad4..9d36dc4 100644
--- a/drivers/s390/virtio/virtio_ccw.c
+++ b/drivers/s390/virtio/virtio_ccw.c
@@ -462,7 +462,7 @@ static void virtio_ccw_del_vq(struct virtqueue *vq, struct ccw1 *ccw)
 	 * This may happen on device detach.
 	 */
 	if (ret && (ret != -ENODEV))
-		dev_warn(&vq->vdev->dev, "Error %d while deleting queue %d",
+		dev_warn(&vq->vdev->dev, "Error %d while deleting queue %d\n",
 			 ret, index);
 
 	vring_del_virtqueue(vq);
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-09-28  6:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-27 20:08 [PATCH] virtio/s390: add missing \n to end of dev_err message Colin King
2016-09-28  6:38 ` Christian Borntraeger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox