[PATCH] nvme-fabrics: Fix a typo in an error message

Christophe JAILLET posted 1 patch 3 years, 8 months ago
drivers/nvme/host/fabrics.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] nvme-fabrics: Fix a typo in an error message
Posted by Christophe JAILLET 3 years, 8 months ago
A 'c' is missing.
s/fabris/fabrics/

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 drivers/nvme/host/fabrics.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nvme/host/fabrics.c b/drivers/nvme/host/fabrics.c
index 5207a2348257..da753d7db563 100644
--- a/drivers/nvme/host/fabrics.c
+++ b/drivers/nvme/host/fabrics.c
@@ -1230,7 +1230,7 @@ static int __init nvmf_init(void)
 	nvmf_device =
 		device_create(nvmf_class, NULL, MKDEV(0, 0), NULL, "ctl");
 	if (IS_ERR(nvmf_device)) {
-		pr_err("couldn't create nvme-fabris device!\n");
+		pr_err("couldn't create nvme-fabrics device!\n");
 		ret = PTR_ERR(nvmf_device);
 		goto out_destroy_class;
 	}
-- 
2.34.1
Re: [PATCH] nvme-fabrics: Fix a typo in an error message
Posted by Christoph Hellwig 3 years, 8 months ago
Thanks,

applied to nvme-6.0.
Re: [PATCH] nvme-fabrics: Fix a typo in an error message
Posted by Chaitanya Kulkarni 3 years, 8 months ago
On 8/6/22 13:15, Christophe JAILLET wrote:
> A 'c' is missing.
> s/fabris/fabrics/
> 
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> ---

Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>

-ck