projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
565e045
)
md/raid1: Fix trailing semicolon
author
Luis de Bethencourt
<luisbg@kernel.org>
Wed, 17 Jan 2018 13:38:02 +0000
(13:38 +0000)
committer
Shaohua Li
<sh.li@alibaba-inc.com>
Sat, 17 Feb 2018 20:58:29 +0000
(12:58 -0800)
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.
Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Signed-off-by: Shaohua Li <sh.li@alibaba-inc.com>
drivers/md/raid1.c
patch
|
blob
|
history
diff --git
a/drivers/md/raid1.c
b/drivers/md/raid1.c
index b2eae332e1a29ee585c04ba6d22c2a23b8b99ed3..f978eddc7a21c8bd442c9b4afafb275ce2c17a2c 100644
(file)
--- a/
drivers/md/raid1.c
+++ b/
drivers/md/raid1.c
@@
-1108,7
+1108,7
@@
static void alloc_behind_master_bio(struct r1bio *r1_bio,
bio_copy_data(behind_bio, bio);
skip_copy:
- r1_bio->behind_master_bio = behind_bio;
;
+ r1_bio->behind_master_bio = behind_bio;
set_bit(R1BIO_BehindIO, &r1_bio->state);
return;