Message ID | 20191212135301.17915-1-chris.brandt@renesas.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 6d5375a31295143ef4bab7cfc352747e93dedc99 |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | [v2] pinctrl: rza1: reduce printed messages | expand |
On Thu, Dec 12, 2019 at 2:53 PM Chris Brandt <chris.brandt@renesas.com> wrote: > 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 <chris.brandt@renesas.com> > Acked-by: Jacopo Mondi <jacopo@jmondi.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> I think Geert usually pick these up as well, else tell me if I should just apply it. Yours, Linus Walleij
Hi Linus, On Mon, Dec 16, 2019 at 10:41 AM Linus Walleij <linus.walleij@linaro.org> wrote: > On Thu, Dec 12, 2019 at 2:53 PM Chris Brandt <chris.brandt@renesas.com> wrote: > > 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 <chris.brandt@renesas.com> > > Acked-by: Jacopo Mondi <jacopo@jmondi.org> > > Acked-by: Linus Walleij <linus.walleij@linaro.org> > > I think Geert usually pick these up as well, else tell me if I should > just apply it. Indeed. Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> and queueing in sh-pfc-for-v5.6. Gr{oetje,eeting}s, Geert
diff --git a/drivers/pinctrl/pinctrl-rza1.c b/drivers/pinctrl/pinctrl-rza1.c index 017fc6b3e27e..e291923df13a 100644 --- a/drivers/pinctrl/pinctrl-rza1.c +++ b/drivers/pinctrl/pinctrl-rza1.c @@ -1235,8 +1235,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; }