nvme-fabrics: Fix a typo in an error message
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 6 Aug 2022 20:15:01 +0000 (22:15 +0200)
committerChristoph 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

index 83b5053..10cc4a8 100644 (file)
@@ -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-fabrics device!\n");
                ret = PTR_ERR(nvmf_device);
                goto out_destroy_class;
        }