hpfs: fix warning due to superfluous semicolon
authorZou Wei <zou_wei@huawei.com>
Sat, 6 Jun 2020 16:57:41 +0000 (18:57 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 6 Jun 2020 17:08:17 +0000 (10:08 -0700)
Fixes coccicheck warning:

  fs/hpfs/buffer.c:56:2-3: Unneeded semicolon

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Signed-off-by: Mikulas Patocka <mikulas@twibright.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/hpfs/buffer.c

index e285d6b..d392468 100644 (file)
@@ -53,7 +53,7 @@ void hpfs_prefetch_sectors(struct super_block *s, unsigned secno, int n)
                        return;
                }
                brelse(bh);
-       };
+       }
 
        blk_start_plug(&plug);
        while (n > 0) {