From: Fabio Estevam Date: Thu, 26 Nov 2020 12:46:43 +0000 (-0300) Subject: serial: imx: Remove unneeded of_device_get_match_data() NULL check X-Git-Tag: microblaze-v5.12~169^2~4 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=603012f78a3f5cb2e7f529b8e318321117a9cf7c;p=linux-2.6-microblaze.git serial: imx: Remove unneeded of_device_get_match_data() NULL check Since 5.10-rc1 i.MX is a devicetree-only platform and the NULL check on of_device_get_match_data() is no longer needed. This check was only needed when this driver supported both DT and non-DT platforms. Remove the unneeded of_device_get_match_data() NULL check. Signed-off-by: Fabio Estevam Link: https://lore.kernel.org/r/20201126124643.3371-1-festevam@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index cafa88df5a85..2452e57a5663 100644 --- a/drivers/tty/serial/imx.c +++ b/drivers/tty/serial/imx.c @@ -2174,9 +2174,6 @@ static int imx_uart_probe_dt(struct imx_port *sport, int ret; sport->devdata = of_device_get_match_data(&pdev->dev); - if (!sport->devdata) - /* no device tree device */ - return 1; ret = of_alias_get_id(np, "serial"); if (ret < 0) {