]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
exfat: add blank line after declarations
authorWilliam Hansen-Baird <william.hansen.baird@gmail.com>
Thu, 22 Jan 2026 00:04:34 +0000 (19:04 -0500)
committerNamjae Jeon <linkinjeon@kernel.org>
Thu, 12 Feb 2026 12:21:51 +0000 (21:21 +0900)
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>
fs/exfat/fatent.c
fs/exfat/file.c

index 71ee16479c4315142f1d083d6dc642700396e3b6..f87576ca70329ddf4dec76cf84858d9b200bead7 100644 (file)
@@ -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;
 
index c0a19f8716e60c088819b3d05724955d609d0ec7..90cd540afeaa734cf9f208903832e445b570dfb6 100644 (file)
@@ -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;
        }