diff options
author | Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> | 2018-09-10 17:39:33 -0700 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-10-01 14:16:09 -0700 |
commit | d93cb3927ca5528bd21f2635a2300f9a1426ac46 (patch) | |
tree | 83ad48e193af1614d1e87e842cfb15fdd186563d /drivers/nvme | |
parent | 53b3a66163ea6cc7a86e0a3a04b1166d96665824 (diff) | |
download | linux-d93cb3927ca5528bd21f2635a2300f9a1426ac46.tar.gz linux-d93cb3927ca5528bd21f2635a2300f9a1426ac46.tar.bz2 linux-d93cb3927ca5528bd21f2635a2300f9a1426ac46.zip |
nvmet: remove redundant module prefix
This patch removes the redundant module prefix used in the pr_err() when
nvmet_get_smart_log_nsid() failed to find the namespace provided as a part
of smart-log command.
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/target/admin-cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/target/admin-cmd.c b/drivers/nvme/target/admin-cmd.c index 2008fa62a373..7a45f4477679 100644 --- a/drivers/nvme/target/admin-cmd.c +++ b/drivers/nvme/target/admin-cmd.c @@ -58,7 +58,7 @@ static u16 nvmet_get_smart_log_nsid(struct nvmet_req *req, ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->get_log_page.nsid); if (!ns) { - pr_err("nvmet : Could not find namespace id : %d\n", + pr_err("Could not find namespace id : %d\n", le32_to_cpu(req->cmd->get_log_page.nsid)); return NVME_SC_INVALID_NS; } |