summaryrefslogtreecommitdiff
path: root/drivers/staging/exfat
diff options
context:
space:
mode:
authorSusarla Nikhilesh <nikhilesh1294@gmail.com>2019-12-03 20:00:23 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-12-10 10:34:41 +0100
commiteb00d734bc78368106ca4de4703d368cd123f6df (patch)
tree17a8fc4a4e6f9df54f059d92ebf51ae86f57211f /drivers/staging/exfat
parentbaf3f2f9d0bf747023c1d1fb197dd4e621ca3fce (diff)
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>
Diffstat (limited to 'drivers/staging/exfat')
-rw-r--r--drivers/staging/exfat/exfat_super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index 6e481908c59f..d1c1e50fb492 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -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;