projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec9e96b
)
nvme-fabrics: Fix a typo in an error message
author
Christophe JAILLET
<christophe.jaillet@wanadoo.fr>
Sat, 6 Aug 2022 20:15:01 +0000
(22:15 +0200)
committer
Christoph Hellwig
<hch@lst.de>
Wed, 10 Aug 2022 14:21:31 +0000
(16:21 +0200)
A 'c' is missing.
s/fabris/fabrics/
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/fabrics.c
patch
|
blob
|
history
diff --git
a/drivers/nvme/host/fabrics.c
b/drivers/nvme/host/fabrics.c
index 83b505358859bcd2d41f1d3e4c6743a0c14ad660..10cc4a8146027933a7d8a9b7b88f25eeda65049b 100644
(file)
--- a/
drivers/nvme/host/fabrics.c
+++ b/
drivers/nvme/host/fabrics.c
@@
-1236,7
+1236,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-fabri
c
s device!\n");
ret = PTR_ERR(nvmf_device);
goto out_destroy_class;
}