pinctrl: join lines that can be a single line within 80 columns
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Sat, 1 Aug 2015 04:22:38 +0000 (13:22 +0900)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 14 Sep 2015 07:13:43 +0000 (09:13 +0200)
There is no reason to break a line shorter than 80 columns.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinmux.c

index 67e08cb..29984b3 100644 (file)
@@ -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;