aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorZou Wei <zou_wei@huawei.com>2020-06-06 18:57:41 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2020-06-06 10:08:17 -0700
commit9fa88c5d3f5eae3e68ef20d226c3f13e21490668 (patch)
treeaa1c17f62379cc526a75ff580dbd634f8ea47c88
parentMerge branch 'for-5.8' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq (diff)
downloadwireguard-linux-9fa88c5d3f5eae3e68ef20d226c3f13e21490668.tar.xz
wireguard-linux-9fa88c5d3f5eae3e68ef20d226c3f13e21490668.zip
hpfs: fix warning due to superfluous semicolon
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>
-rw-r--r--fs/hpfs/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hpfs/buffer.c b/fs/hpfs/buffer.c
index e285d6b3bba4..d39246865c51 100644
--- a/fs/hpfs/buffer.c
+++ b/fs/hpfs/buffer.c
@@ -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) {