]> code.ossystems Code Review - bsp/u-boot.git/commitdiff
pinctrl: imx: do not announce driver initialization
authorStefan Agner <stefan.agner@toradex.com>
Tue, 2 Aug 2016 05:50:16 +0000 (22:50 -0700)
committerOtavio Salvador <otavio@ossystems.com.br>
Fri, 16 Sep 2016 17:25:40 +0000 (14:25 -0300)
It is not usual that drivers announce when they have been initialized.
use dev_dbg to announce device initialization.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/pinctrl/nxp/pinctrl-imx.c

index 40b0616c0b56b6ddfcc629f03b9088d56880441c..949d0f32d8b9cfeed5b5064780d48aaf1eb509e0 100644 (file)
@@ -222,7 +222,7 @@ int imx_pinctrl_probe(struct udevice *dev,
                        return -ENOMEM;
        }
 
-       dev_info(dev, "initialized IMX pinctrl driver\n");
+       dev_dbg(dev, "initialized IMX pinctrl driver\n");
 
        return 0;
 }