diff options
author | Yuezhang.Mo <Yuezhang.Mo@sony.com> | 2021-12-16 21:58:37 +0900 |
---|---|---|
committer | Namjae Jeon <linkinjeon@kernel.org> | 2022-01-10 11:00:03 +0900 |
commit | c71510b3fa27f96840c5737d8a47dd7b370e376c (patch) | |
tree | 2006b010d679f9460bb4d8b145d5f61cce8144db /fs/exfat/nls.c | |
parent | 1ed147e29e505de819aaa5b57919c25348f72e1f (diff) | |
download | lwn-c71510b3fa27f96840c5737d8a47dd7b370e376c.tar.gz lwn-c71510b3fa27f96840c5737d8a47dd7b370e376c.zip |
exfat: remove argument 'sector' from exfat_get_dentry()
No any function uses argument 'sector', remove it.
Reviewed-by: Andy.Wu <Andy.Wu@sony.com>
Reviewed-by: Aoyama, Wataru <wataru.aoyama@sony.com>
Acked-by: Sungjong Seo <sj1557.seo@samsung.com>
Signed-off-by: Yuezhang.Mo <Yuezhang.Mo@sony.com>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Diffstat (limited to 'fs/exfat/nls.c')
-rw-r--r-- | fs/exfat/nls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exfat/nls.c b/fs/exfat/nls.c index 314d5407a1be..ef115e673406 100644 --- a/fs/exfat/nls.c +++ b/fs/exfat/nls.c @@ -761,7 +761,7 @@ int exfat_create_upcase_table(struct super_block *sb) while (clu.dir != EXFAT_EOF_CLUSTER) { for (i = 0; i < sbi->dentries_per_clu; i++) { - ep = exfat_get_dentry(sb, &clu, i, &bh, NULL); + ep = exfat_get_dentry(sb, &clu, i, &bh); if (!ep) return -EIO; |