Skip to content

Commit

Permalink
pinctrl: join lines that can be a single line within 80 columns
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Masahiro Yamada authored and Linus Walleij committed Sep 14, 2015
1 parent 5a99233 commit 163dc9f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/pinctrl/pinmux.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 163dc9f

Please sign in to comment.