pinctrl: imx: do not announce driver initialization

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>
This commit is contained in:
Stefan Agner 2016-10-05 15:27:04 -07:00 committed by Stefano Babic
parent a99546ab62
commit 5a6f8d7b3b

View 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;
}