diff options
author | Zou Wei <zou_wei@huawei.com> | 2020-06-06 18:57:41 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-06-06 10:08:17 -0700 |
commit | 9fa88c5d3f5eae3e68ef20d226c3f13e21490668 (patch) | |
tree | aa1c17f62379cc526a75ff580dbd634f8ea47c88 /fs/hpfs | |
parent | fe3bc8a988a4d38dc090e77071ff9b8ea266528a (diff) | |
download | linux-9fa88c5d3f5eae3e68ef20d226c3f13e21490668.tar.bz2 |
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>
Diffstat (limited to 'fs/hpfs')
-rw-r--r-- | fs/hpfs/buffer.c | 2 |
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) { |