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>
This commit is contained in:
Namjae Jeon 2020-08-14 11:03:46 +09:00
parent bbf5c97901
commit 9e456aeaac
3 changed files with 3 additions and 3 deletions

View File

@ -128,7 +128,7 @@ enum {
struct exfat_dentry_namebuf { struct exfat_dentry_namebuf {
char *lfn; char *lfn;
int lfnbuf_len; /* usally MAX_UNINAME_BUF_SIZE */ int lfnbuf_len; /* usually MAX_UNINAME_BUF_SIZE */
}; };
/* unicode name structure */ /* unicode name structure */

View File

@ -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) { 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 * dentries
*/ */
return -ENOSPC; return -ENOSPC;

View File

@ -11,7 +11,7 @@
#include "exfat_raw.h" #include "exfat_raw.h"
#include "exfat_fs.h" #include "exfat_fs.h"
/* Upcase tabel macro */ /* Upcase table macro */
#define EXFAT_NUM_UPCASE (2918) #define EXFAT_NUM_UPCASE (2918)
#define UTBL_COUNT (0x10000) #define UTBL_COUNT (0x10000)