diff options
author | Adam Ford <aford173@gmail.com> | 2019-06-23 17:48:36 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-26 22:24:12 -0400 |
commit | 938359c5704835d5cf8d20f09beab1b361891003 (patch) | |
tree | fb816c5c6be3dd84615e608fe6c5bf0c1680be64 /board/davinci | |
parent | 9de4695f757537f87186f268264a333d681cb811 (diff) | |
download | u-boot-938359c5704835d5cf8d20f09beab1b361891003.tar.gz u-boot-938359c5704835d5cf8d20f09beab1b361891003.tar.bz2 u-boot-938359c5704835d5cf8d20f09beab1b361891003.zip |
ARM: da850-evm: Remove duplicate UART initialization
The Low Level init functions start the UART, so it doesn't need
to happen during board_init. This patch removes it from
board_init.
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'board/davinci')
-rw-r--r-- | board/davinci/da8xxevm/da850evm.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/davinci/da8xxevm/da850evm.c b/board/davinci/da8xxevm/da850evm.c index 43483d526a..649c488470 100644 --- a/board/davinci/da8xxevm/da850evm.c +++ b/board/davinci/da8xxevm/da850evm.c @@ -377,11 +377,6 @@ int board_init(void) davinci_emac_mii_mode_sel(HAS_RMII); #endif /* CONFIG_DRIVER_TI_EMAC */ - /* enable the console UART */ - writel((DAVINCI_UART_PWREMU_MGMT_FREE | DAVINCI_UART_PWREMU_MGMT_URRST | - DAVINCI_UART_PWREMU_MGMT_UTRST), - &davinci_uart2_ctrl_regs->pwremu_mgmt); - return 0; } |