From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941151AbcIYWEW (ORCPT ); Sun, 25 Sep 2016 18:04:22 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:42089 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932525AbcIYWEV (ORCPT ); Sun, 25 Sep 2016 18:04:21 -0400 From: Colin King To: trivial@kernel.org, Keith Busch , Jens Axboe , linux-nvme@lists.infradead.org Cc: linux-kernel@vger.kernel.org Subject: [PATCH] nvme: add missing \n to end of dev_warn message Date: Sun, 25 Sep 2016 15:04:13 -0700 Message-Id: <20160925220413.13487-1-colin.king@canonical.com> X-Mailer: git-send-email 2.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Colin Ian King Trival fix, dev_warn message is missing a \n, so add it. Signed-off-by: Colin Ian King --- drivers/nvme/host/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index 0fc99f0..62a3644 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -855,7 +855,7 @@ static void abort_endio(struct request *req, int error) struct nvme_queue *nvmeq = iod->nvmeq; u16 status = req->errors; - dev_warn(nvmeq->dev->ctrl.device, "Abort status: 0x%x", status); + dev_warn(nvmeq->dev->ctrl.device, "Abort status: 0x%x\n", status); atomic_inc(&nvmeq->dev->ctrl.abort_limit); blk_mq_free_request(req); } -- 2.9.3