aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2015-05-28 21:52:59 +0900
committerLinus Walleij <linus.walleij@linaro.org>2015-06-02 13:32:20 +0200
commit7e9236ff3d92ec326f29a20d86add10f1ff4e9b3 (patch)
treec510cbfcfcfd18aa0a08d7301261bc8890cfdd36 /drivers/pinctrl
parentpinctrl: zynq: add static const to zynq_pctrl_groups (diff)
downloadlinux-dev-7e9236ff3d92ec326f29a20d86add10f1ff4e9b3.tar.xz
linux-dev-7e9236ff3d92ec326f29a20d86add10f1ff4e9b3.zip
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: Masahiro Yamada <yamada.masahiro@socionext.com> [also fixed %d -> %u] Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r--drivers/pinctrl/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/core.c b/drivers/pinctrl/core.c
index 291099d5cf51..b01ee7281130 100644
--- a/drivers/pinctrl/core.c
+++ b/drivers/pinctrl/core.c
@@ -1115,7 +1115,7 @@ int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
int i, ret;
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 */
for (i = 0; i < num_maps; i++) {