Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

nvme-fabrics: Fix a typo in an error message

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>

authored by

Christophe JAILLET and committed by
Christoph Hellwig
c50cd03d ec9e96b5

+1 -1
+1 -1
drivers/nvme/host/fabrics.c
··· 1236 1236 nvmf_device = 1237 1237 device_create(nvmf_class, NULL, MKDEV(0, 0), NULL, "ctl"); 1238 1238 if (IS_ERR(nvmf_device)) { 1239 - pr_err("couldn't create nvme-fabris device!\n"); 1239 + pr_err("couldn't create nvme-fabrics device!\n"); 1240 1240 ret = PTR_ERR(nvmf_device); 1241 1241 goto out_destroy_class; 1242 1242 }