diff options
| author | Simon Glass <[email protected]> | 2015-12-04 08:58:39 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2015-12-05 18:22:38 -0500 |
| commit | 878a3ed9ad137c329df2f95735249353e565aac8 (patch) | |
| tree | 21ecf7e6105a4ebdf49c95d3ecdb86e080f112b1 | |
| parent | b7e5a6439f3075ec79f8d38a3572fc3b68d583d3 (diff) | |
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 <[email protected]>
Reported-by: Stephen Warren <[email protected]>
Acked-by: Thomas Chou <[email protected]>
| -rw-r--r-- | arch/arm/mach-tegra/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board.c b/arch/arm/mach-tegra/board.c index 8c8927d5919..3d1d26d13d1 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, |
