aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBin Shi <[email protected]>2014-08-18 16:49:20 +0800
committerLinus Walleij <[email protected]>2014-08-29 08:37:40 +0200
commit4bee325cd9bc06c5e7b3cc4398f101ed3fa5cc0e (patch)
tree5f05f2e843c459604b0c4a55091f342673ac7cb3
parentad3d7f1e8f0160b12ad8eb69f78015930645a166 (diff)
pinctrl: sirf: fix "quoted string split across lines"
this patch fixes: WARNING: quoted string split across lines 902: FILE: drivers/pinctrl/sirf/pinctrl-sirf.c:902: +MODULE_AUTHOR("Rongjun Ying <[email protected]>, " + "Yuping Luo <[email protected]>, " WARNING: quoted string split across lines 903: FILE: drivers/pinctrl/sirf/pinctrl-sirf.c:903: + "Yuping Luo <[email protected]>, " + "Barry Song <[email protected]>"); Signed-off-by: Bin Shi <[email protected]> Signed-off-by: Barry Song <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
-rw-r--r--drivers/pinctrl/sirf/pinctrl-sirf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pinctrl/sirf/pinctrl-sirf.c b/drivers/pinctrl/sirf/pinctrl-sirf.c
index 4c1d7c68666d..08d1f5a9601a 100644
--- a/drivers/pinctrl/sirf/pinctrl-sirf.c
+++ b/drivers/pinctrl/sirf/pinctrl-sirf.c
@@ -898,8 +898,8 @@ static int __init sirfsoc_gpio_init(void)
}
subsys_initcall(sirfsoc_gpio_init);
-MODULE_AUTHOR("Rongjun Ying <[email protected]>, "
- "Yuping Luo <[email protected]>, "
- "Barry Song <[email protected]>");
+MODULE_AUTHOR("Rongjun Ying <[email protected]>");
+MODULE_AUTHOR("Yuping Luo <[email protected]>");
+MODULE_AUTHOR("Barry Song <[email protected]>");
MODULE_DESCRIPTION("SIRFSOC pin control driver");
MODULE_LICENSE("GPL");