Messages in this thread Patch in this message |  | | Subject | [PATCH 11/13] md/multipath: Move a brace for a designated initialiser | From | SF Markus Elfring <> | Date | Sun, 2 Oct 2016 14:08:26 +0200 |
| |
From: Markus Elfring <elfring@users.sourceforge.net> Date: Sun, 2 Oct 2016 10:43:28 +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@users.sourceforge.net> --- drivers/md/multipath.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/md/multipath.c b/drivers/md/multipath.c index 23c7c29..ab6487c 100644 --- a/drivers/md/multipath.c +++ b/drivers/md/multipath.c @@ -485,8 +485,7 @@ static void multipath_free(struct mddev *mddev, void *priv) kfree(conf); } -static struct md_personality multipath_personality = -{ +static struct md_personality multipath_personality = { .name = "multipath", .level = LEVEL_MULTIPATH, .owner = THIS_MODULE, -- 2.10.0
|  |