diff options
author | Chris Brandt <[email protected]> | 2019-12-12 08:53:01 -0500 |
---|---|---|
committer | Geert Uytterhoeven <[email protected]> | 2019-12-20 15:48:14 +0100 |
commit | 6d5375a31295143ef4bab7cfc352747e93dedc99 (patch) | |
tree | bc8277a7e57716c958925a38201e4aa1904ed062 | |
parent | a34cd9dfd03fa9ec380405969f1d638bc63b8d63 (diff) |
pinctrl: rza1: Reduce printed messages
Since this message is printed for each port, it creates a lot of output
during boot and would serve better only during debugging.
Signed-off-by: Chris Brandt <[email protected]>
Acked-by: Jacopo Mondi <[email protected]>
Acked-by: Linus Walleij <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Geert Uytterhoeven <[email protected]>
-rw-r--r-- | drivers/pinctrl/pinctrl-rza1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-rza1.c b/drivers/pinctrl/pinctrl-rza1.c index 215db220d795..617585be6a7d 100644 --- a/drivers/pinctrl/pinctrl-rza1.c +++ b/drivers/pinctrl/pinctrl-rza1.c @@ -1229,8 +1229,8 @@ static int rza1_parse_gpiochip(struct rza1_pinctrl *rza1_pctl, pinctrl_add_gpio_range(rza1_pctl->pctl, range); - dev_info(rza1_pctl->dev, "Parsed gpiochip %s with %d pins\n", - chip->label, chip->ngpio); + dev_dbg(rza1_pctl->dev, "Parsed gpiochip %s with %d pins\n", + chip->label, chip->ngpio); return 0; } |