]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: exfat: Fix parameter alignment issues
authorFrank A. Cancio Bello <frank@generalsoftwareinc.com>
Sat, 2 Nov 2019 04:06:32 +0000 (04:06 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 3 Nov 2019 12:10:10 +0000 (13:10 +0100)
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>
drivers/staging/exfat/exfat_core.c

index f4f82aecc05d697ca08b6359ce1ef9be59de74fb..b23fbf3ebaa5c77eb4d3fa09ebdf545591efd626 100644 (file)
@@ -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;