mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 14:09:38 -04:00
staging: exfat: Fix parameter alignment issues
Fix alignment to match open parenthesis to comply in that way with the preferred coding style for the linux kernel. Issue found by checkpatch. Suggested-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Frank A. Cancio Bello <frank@generalsoftwareinc.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Link: https://lore.kernel.org/r/fe316e694ea9c4aa370d3a8166a3680feb342682.1572666556.git.frank@generalsoftwareinc.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
354e27a86b
commit
8a4e640eb7
@@ -1503,7 +1503,7 @@ void fat_delete_dir_entry(struct super_block *sb, struct chain_t *p_dir,
|
||||
}
|
||||
|
||||
void exfat_delete_dir_entry(struct super_block *sb, struct chain_t *p_dir,
|
||||
s32 entry, s32 order, s32 num_entries)
|
||||
s32 entry, s32 order, s32 num_entries)
|
||||
{
|
||||
int i;
|
||||
sector_t sector;
|
||||
@@ -1919,7 +1919,8 @@ s32 write_whole_entry_set(struct super_block *sb, struct entry_set_cache_t *es)
|
||||
|
||||
/* write back some entries in entry set */
|
||||
s32 write_partial_entries_in_entry_set(struct super_block *sb,
|
||||
struct entry_set_cache_t *es, struct dentry_t *ep, u32 count)
|
||||
struct entry_set_cache_t *es,
|
||||
struct dentry_t *ep, u32 count)
|
||||
{
|
||||
s32 ret, byte_offset, off;
|
||||
u32 clu = 0;
|
||||
|
||||
Reference in New Issue
Block a user