diff options
author | Vikas Manocha | 2017-02-12 10:25:48 -0800 |
---|---|---|
committer | Tom Rini | 2017-03-17 14:15:14 -0400 |
commit | b5be8f5ea8d9b0ffc46f818ce0cb38cd16f99e4d (patch) | |
tree | 97556c8a9b47ea996828a6f82be552ecc54fd08e /board | |
parent | 84bfdc17b54198a869ad91341c26eec5f9c96169 (diff) |
stm32f7: clk: remove usart1 clock enable from board init
Before clock driver availability it was required to enable usart1 clock
for serial init but now with clock driver is taking care of usart1 clock.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/st/stm32f746-disco/stm32f746-disco.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/board/st/stm32f746-disco/stm32f746-disco.c b/board/st/stm32f746-disco/stm32f746-disco.c index 72212f49126..ee1deb52753 100644 --- a/board/st/stm32f746-disco/stm32f746-disco.c +++ b/board/st/stm32f746-disco/stm32f746-disco.c @@ -380,7 +380,6 @@ int board_early_init_f(void) int res; res = uart_setup_gpio(); - clock_setup(USART1_CLOCK_CFG); if (res) return res; |