summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYi Zhang <yi.zhang@redhat.com>2024-04-10 03:57:14 +0300
committerKeith Busch <kbusch@kernel.org>2024-04-12 03:22:13 +0300
commit0bc2e80b9be51712b19e919db5abc97a418f8292 (patch)
tree1a70736364673aee4370530213c7f556f6a7e4fa
parent013ee5a6234d4c574dedd60c4887a4bcc9ecc749 (diff)
downloadlinux-0bc2e80b9be51712b19e919db5abc97a418f8292.tar.xz
nvme: fix warn output about shared namespaces without CONFIG_NVME_MULTIPATH
Move the stray '.' that is currently at the end of the line after newline '\n' to before newline character which is the right position. Fixes: ce8d78616a6b ("nvme: warn about shared namespaces without CONFIG_NVME_MULTIPATH") Signed-off-by: Yi Zhang <yi.zhang@redhat.com> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Signed-off-by: Keith Busch <kbusch@kernel.org>
-rw-r--r--drivers/nvme/host/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 27281a9a8951..e4bec200ebeb 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -3681,7 +3681,7 @@ static int nvme_init_ns_head(struct nvme_ns *ns, struct nvme_ns_info *info)
"Found shared namespace %d, but multipathing not supported.\n",
info->nsid);
dev_warn_once(ctrl->device,
- "Support for shared namespaces without CONFIG_NVME_MULTIPATH is deprecated and will be removed in Linux 6.0\n.");
+ "Support for shared namespaces without CONFIG_NVME_MULTIPATH is deprecated and will be removed in Linux 6.0.\n");
}
}