Commit 163dc9f3 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Linus Walleij

pinctrl: join lines that can be a single line within 80 columns

There is no reason to break a line shorter than 80 columns.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 5a99233e
......@@ -313,8 +313,7 @@ static int pinmux_func_name_to_selector(struct pinctrl_dev *pctldev,
/* See if this pctldev has this function */
while (selector < nfuncs) {
const char *fname = ops->get_function_name(pctldev,
selector);
const char *fname = ops->get_function_name(pctldev, selector);
if (!strcmp(function, fname))
return selector;
......
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