Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+3 -3
+1 -1
fs/exfat/exfat_fs.h
··· 128 128 129 129 struct exfat_dentry_namebuf { 130 130 char *lfn; 131 - int lfnbuf_len; /* usally MAX_UNINAME_BUF_SIZE */ 131 + int lfnbuf_len; /* usually MAX_UNINAME_BUF_SIZE */ 132 132 }; 133 133 134 134 /* unicode name structure */
+1 -1
fs/exfat/namei.c
··· 290 290 { 291 291 if (EXFAT_B_TO_DEN(i_size_read(inode)) >= MAX_EXFAT_DENTRIES) { 292 292 /* 293 - * exFAT spec allows a dir to grow upto 8388608(256MB) 293 + * exFAT spec allows a dir to grow up to 8388608(256MB) 294 294 * dentries 295 295 */ 296 296 return -ENOSPC;
+1 -1
fs/exfat/nls.c
··· 11 11 #include "exfat_raw.h" 12 12 #include "exfat_fs.h" 13 13 14 - /* Upcase tabel macro */ 14 + /* Upcase table macro */ 15 15 #define EXFAT_NUM_UPCASE (2918) 16 16 #define UTBL_COUNT (0x10000) 17 17