Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 56a64c17 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Shaohua Li
Browse files

md/raid1: Fix trailing semicolon



The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarShaohua Li <sh.li@alibaba-inc.com>
parent 565e0450
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;