staging: exfat: fix spelling mistake
authorSusarla Nikhilesh <nikhilesh1294@gmail.com>
Tue, 3 Dec 2019 14:30:23 +0000 (20:00 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 10 Dec 2019 09:34:41 +0000 (10:34 +0100)
CHECK: 'propogate' may be misspelled - perhaps 'propagate'?
FILE: drivers/staging/exfat/exfat_super.c:1484

CHECK: 'propogate' may be misspelled - perhaps 'propagate'?
FILE: drivers/staging/exfat/exfat_super.c:1551

Signed-off-by: Susarla Nikhilesh <nikhilesh1294@gmail.com>
Link: https://lore.kernel.org/r/20191203143023.2786-1-nikhilesh1294@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/exfat/exfat_super.c

index 6e481908c59f642645824df070eb3efc7266f3dd..d1c1e50fb492d77401cb37a95381e84c5289df4a 100644 (file)
@@ -1481,7 +1481,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
 
                        count = count_dos_name_entries(sb, &dir, TYPE_DIR);
                        if (count < 0) {
-                               ret = count; /* propogate error upward */
+                               ret = count; /* propagate error upward */
                                goto out;
                        }
                        info->NumSubdirs = count;
@@ -1548,7 +1548,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
 
                count = count_dos_name_entries(sb, &dir, TYPE_DIR);
                if (count < 0) {
-                       ret = count; /* propogate error upward */
+                       ret = count; /* propagate error upward */
                        goto out;
                }
                info->NumSubdirs += count;