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

serial: imx: Use NULL as the last argument of add_preferred_console()

Commit f7d2c0bb (serial: i.MX: evaluate linux,stdout-path property) introduced
the following sparse warning:

drivers/tty/serial/imx.c:1916:77: warning: Using plain integer as NULL pointer

Pass NULL as the last argument of add_preferred_console() instead of zero.
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Acked-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f377775d
...@@ -1913,7 +1913,8 @@ static int serial_imx_probe_dt(struct imx_port *sport, ...@@ -1913,7 +1913,8 @@ static int serial_imx_probe_dt(struct imx_port *sport,
sport->devdata = of_id->data; sport->devdata = of_id->data;
if (of_device_is_stdout_path(np)) if (of_device_is_stdout_path(np))
add_preferred_console(imx_reg.cons->name, sport->port.line, 0); add_preferred_console(imx_reg.cons->name, sport->port.line,
NULL);
return 0; return 0;
} }
......
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