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

Commit 7e9236ff authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Linus Walleij
Browse files

pinctrl: fix confusing debug message in pinctrl_register_map()



There are two types for pinctrl maps: pinmux and pinconfig
This debug message shows the number of maps of both types.
The string "pinmux map" is not precise.  Let's say "pinctrl map"
instead.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
[also fixed %d -> %u]
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 4fd24e22
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1115,7 +1115,7 @@ int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
	int i, ret;
	int i, ret;
	struct pinctrl_maps *maps_node;
	struct pinctrl_maps *maps_node;


	pr_debug("add %d pinmux maps\n", num_maps);
	pr_debug("add %u pinctrl maps\n", num_maps);


	/* First sanity check the new mapping */
	/* First sanity check the new mapping */
	for (i = 0; i < num_maps; i++) {
	for (i = 0; i < num_maps; i++) {