Skip to content

Commit

Permalink
exfat: fix typos in comments
Browse files Browse the repository at this point in the history
Fix typos in comments.

Signed-off-by: Christophe Vu-Brugier <christophe.vu-brugier@seagate.com>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
  • Loading branch information
Christophe Vu-Brugier authored and Namjae Jeon committed Jan 10, 2022
1 parent e21a28b commit 6fa96cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fs/exfat/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ struct exfat_entry_set_cache *exfat_get_dentry_set(struct super_block *sb,
es->bh[es->num_bh++] = bh;
}

/* validiate cached dentries */
/* validate cached dentries */
for (i = 1; i < num_entries; i++) {
ep = exfat_get_dentry_cached(es, i);
if (!exfat_validate_entry(exfat_get_entry_type(ep), &mode))
Expand Down
2 changes: 1 addition & 1 deletion fs/exfat/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static int __exfat_write_inode(struct inode *inode, int sync)
return 0;

/*
* If the indode is already unlinked, there is no need for updating it.
* If the inode is already unlinked, there is no need for updating it.
*/
if (ei->dir.dir == DIR_DELETED)
return 0;
Expand Down

0 comments on commit 6fa96cd

Please sign in to comment.