Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;