From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Tue, 4 Oct 2016 14:25:01 +0200 The script "checkpatch.pl" pointed information out like the following. ERROR: that open brace { should be on the previous line Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- drivers/md/raid0.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/md/raid0.c b/drivers/md/raid0.c index 06cb172..9b76eae 100644 --- a/drivers/md/raid0.c +++ b/drivers/md/raid0.c @@ -222,8 +222,7 @@ static int create_strip_zones(struct mddev *mddev, struct r0conf **private_conf) curr_zone_end = zone->zone_end; /* now do the other zones */ - for (i = 1; i < conf->nr_strip_zones; i++) - { + for (i = 1; i < conf->nr_strip_zones; i++) { int j; zone = conf->strip_zone + i; @@ -665,8 +664,7 @@ static void raid0_quiesce(struct mddev *mddev, int state) { } -static struct md_personality raid0_personality= -{ +static struct md_personality raid0_personality = { .name = "raid0", .level = 0, .owner = THIS_MODULE, -- 2.10.1 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html