Commit e4d03050 authored by Markus Elfring's avatar Markus Elfring Committed by Linus Walleij

pinctrl: Combine substrings for a message in pin_config_group_get()

The script "checkpatch.pl" pointed information out like the following.

WARNING: quoted string split across lines

Thus fix the affected source code place.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Reviewed-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 76ce37f0
...@@ -87,9 +87,8 @@ int pin_config_group_get(const char *dev_name, const char *pin_group, ...@@ -87,9 +87,8 @@ int pin_config_group_get(const char *dev_name, const char *pin_group,
ops = pctldev->desc->confops; ops = pctldev->desc->confops;
if (!ops || !ops->pin_config_group_get) { if (!ops || !ops->pin_config_group_get) {
dev_dbg(pctldev->dev, "cannot get configuration for pin " dev_dbg(pctldev->dev,
"group, missing group config get function in " "cannot get configuration for pin group, missing group config get function in driver\n");
"driver\n");
ret = -ENOTSUPP; ret = -ENOTSUPP;
goto unlock; goto unlock;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment