From: Simon Glass Date: Fri, 4 Dec 2015 15:58:39 +0000 (-0700) Subject: dm: tegra: Provide serial platform data for SPL X-Git-Tag: v2016.01-rc2~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=878a3ed9ad137c329df2f95735249353e565aac8;p=u-boot dm: tegra: Provide serial platform data for SPL At present an incorrect #if term is preventing this data from being compiled in. All tegra boards use driver model for serial, so we can just drop this. Fixes: fde7e18938d8 ("dm: tegra: pci: Move CONFIG_PCI_TEGRA to Kconfig") Signed-off-by: Simon Glass Reported-by: Stephen Warren Acked-by: Thomas Chou --- diff --git a/arch/arm/mach-tegra/board.c b/arch/arm/mach-tegra/board.c index 8c8927d591..3d1d26d13d 100644 --- a/arch/arm/mach-tegra/board.c +++ b/arch/arm/mach-tegra/board.c @@ -214,7 +214,7 @@ void board_init_uart_f(void) setup_uarts(uart_ids); } -#if CONFIG_IS_ENABLED(DM_SERIAL) && !CONFIG_IS_ENABLED(OF_CONTROL) +#if !CONFIG_IS_ENABLED(OF_CONTROL) static struct ns16550_platdata ns16550_com1_pdata = { .base = CONFIG_SYS_NS16550_COM1, .reg_shift = 2,