Commit f0fd1b73 authored by Fabio Estevam's avatar Fabio Estevam Committed by Greg Kroah-Hartman

serial: imx: Remove unneeded registration message

There is no real value in displaying "Serial: IMX driver" in every boot.

The uart_register_driver() can fail and even so the "Serial: IMX driver" will
be displayed, which is not really helpful.

This is particularly annoying when booting multi_v7_defconfig kernel on a SoC
that is not a i.MX and even though this message gets displayed.
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f1f2b6e4
...@@ -1937,11 +1937,8 @@ static struct platform_driver serial_imx_driver = { ...@@ -1937,11 +1937,8 @@ static struct platform_driver serial_imx_driver = {
static int __init imx_serial_init(void) static int __init imx_serial_init(void)
{ {
int ret; int ret = uart_register_driver(&imx_reg);
pr_info("Serial: IMX driver\n");
ret = uart_register_driver(&imx_reg);
if (ret) if (ret)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment