From b5be8f5ea8d9b0ffc46f818ce0cb38cd16f99e4d Mon Sep 17 00:00:00 2001 From: Vikas Manocha Date: Sun, 12 Feb 2017 10:25:48 -0800 Subject: 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 --- board/st/stm32f746-disco/stm32f746-disco.c | 1 - 1 file changed, 1 deletion(-) (limited to 'board/st/stm32f746-disco/stm32f746-disco.c') diff --git a/board/st/stm32f746-disco/stm32f746-disco.c b/board/st/stm32f746-disco/stm32f746-disco.c index 72212f4912..ee1deb5275 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; -- cgit