diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2020-08-14 05:03:46 +0300 |
---|---|---|
committer | Namjae Jeon <namjae.jeon@samsung.com> | 2020-10-22 02:29:10 +0300 |
commit | 9e456aeaacb6b44c5d8f858800d53c1958daad3d (patch) | |
tree | 414cbd540939a0a8fdaf456b414f4d90092b21ea /fs/exfat/namei.c | |
parent | bbf5c979011a099af5dc76498918ed7df445635b (diff) | |
download | linux-9e456aeaacb6b44c5d8f858800d53c1958daad3d.tar.xz |
exfat: fix misspellings using codespell tool
Sedat reported typos using codespell tool.
$ codespell fs/exfat/*.c | grep -v iput
fs/exfat/namei.c:293: upto ==> up to
fs/exfat/nls.c:14: tabel ==> table
$ codespell fs/exfat/*.h
fs/exfat/exfat_fs.h:133: usally ==> usually
Fix typos found by codespell.
Reported-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Diffstat (limited to 'fs/exfat/namei.c')
-rw-r--r-- | fs/exfat/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exfat/namei.c b/fs/exfat/namei.c index c94ac239f740..0b12033e1577 100644 --- a/fs/exfat/namei.c +++ b/fs/exfat/namei.c @@ -290,7 +290,7 @@ static int exfat_check_max_dentries(struct inode *inode) { if (EXFAT_B_TO_DEN(i_size_read(inode)) >= MAX_EXFAT_DENTRIES) { /* - * exFAT spec allows a dir to grow upto 8388608(256MB) + * exFAT spec allows a dir to grow up to 8388608(256MB) * dentries */ return -ENOSPC; |