mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 04:04:43 +01:00
exfat: add blank line after declarations
Add a blank line after variable declarations in fatent.c and file.c. This improves readability and makes code style more consistent across the exfat subsystem. Signed-off-by: William Hansen-Baird <william.hansen.baird@gmail.com> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
This commit is contained in:
parent
5e37a4577f
commit
c1f5740667
2 changed files with 2 additions and 0 deletions
|
|
@ -207,6 +207,7 @@ static int __exfat_free_cluster(struct inode *inode, struct exfat_chain *p_chain
|
|||
if (p_chain->flags == ALLOC_NO_FAT_CHAIN) {
|
||||
int err;
|
||||
unsigned int last_cluster = p_chain->dir + p_chain->size - 1;
|
||||
|
||||
do {
|
||||
bool sync = false;
|
||||
|
||||
|
|
|
|||
|
|
@ -683,6 +683,7 @@ static ssize_t exfat_file_write_iter(struct kiocb *iocb, struct iov_iter *iter)
|
|||
|
||||
if (iocb->ki_pos > pos) {
|
||||
ssize_t err = generic_write_sync(iocb, iocb->ki_pos - pos);
|
||||
|
||||
if (err < 0)
|
||||
return err;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue