diff options
author | Yuezhang.Mo <Yuezhang.Mo@sony.com> | 2021-12-16 15:58:37 +0300 |
---|---|---|
committer | Namjae Jeon <linkinjeon@kernel.org> | 2022-01-10 05:00:03 +0300 |
commit | c71510b3fa27f96840c5737d8a47dd7b370e376c (patch) | |
tree | 2006b010d679f9460bb4d8b145d5f61cce8144db /fs/exfat/exfat_fs.h | |
parent | 1ed147e29e505de819aaa5b57919c25348f72e1f (diff) | |
download | linux-c71510b3fa27f96840c5737d8a47dd7b370e376c.tar.xz |
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/exfat_fs.h')
-rw-r--r-- | fs/exfat/exfat_fs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/exfat/exfat_fs.h b/fs/exfat/exfat_fs.h index 9665fa0b2d56..619e5b4bed10 100644 --- a/fs/exfat/exfat_fs.h +++ b/fs/exfat/exfat_fs.h @@ -459,8 +459,7 @@ int exfat_find_dir_entry(struct super_block *sb, struct exfat_inode_info *ei, int num_entries, unsigned int type, struct exfat_hint *hint_opt); int exfat_alloc_new_dir(struct inode *inode, struct exfat_chain *clu); struct exfat_dentry *exfat_get_dentry(struct super_block *sb, - struct exfat_chain *p_dir, int entry, struct buffer_head **bh, - sector_t *sector); + struct exfat_chain *p_dir, int entry, struct buffer_head **bh); struct exfat_dentry *exfat_get_dentry_cached(struct exfat_entry_set_cache *es, int num); struct exfat_entry_set_cache *exfat_get_dentry_set(struct super_block *sb, |