mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 15:49:42 -04:00
staging: exfat: fix spelling mistake
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
baf3f2f9d0
commit
eb00d734bc
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user