From: Stephen Warren <swarren@xxxxxxxxxx> Tegra only supports, and always enables, device tree. Remove all ifdefs for DT support from the driver. Signed-off-by: Stephen Warren <swarren@xxxxxxxxxx> --- drivers/tty/serial/serial-tegra.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c index 4f5e629..372de8a 100644 --- a/drivers/tty/serial/serial-tegra.c +++ b/drivers/tty/serial/serial-tegra.c @@ -1269,8 +1269,7 @@ static int tegra_uart_probe(struct platform_device *pdev) const struct tegra_uart_chip_data *cdata; const struct of_device_id *match; - match = of_match_device(of_match_ptr(tegra_uart_of_match), - &pdev->dev); + match = of_match_device(tegra_uart_of_match, &pdev->dev); if (!match) { dev_err(&pdev->dev, "Error: No device match found\n"); return -ENODEV; @@ -1361,7 +1360,7 @@ static struct platform_driver tegra_uart_platform_driver = { .remove = tegra_uart_remove, .driver = { .name = "serial-tegra", - .of_match_table = of_match_ptr(tegra_uart_of_match), + .of_match_table = tegra_uart_of_match, .pm = &tegra_uart_pm_ops, }, }; -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html