diff options
author | Patrice Chotard | 2017-12-12 09:49:37 +0100 |
---|---|---|
committer | Tom Rini | 2018-01-10 08:05:46 -0500 |
commit | 2d18d72858adf7171bbae32c2efb0653507435e2 (patch) | |
tree | cf14b216b94f0a1663e540b0307fa4e55962e314 /board/st | |
parent | a05707004d5782a07be7cb43ba02d93c5995e7e0 (diff) |
board: stm32f429-disco: switch to DM STM32 serial driver
Remove serial_stm32.c driver and uart init from board file,
use available DM serial_stm32x7.c driver compatible for
STM32F4/F7 and H7 SoCs.
The serial_stm32x7.c driver will be renamed later with a more
generic name as it's shared with all STM32 Socs.
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'board/st')
-rw-r--r-- | board/st/stm32f429-discovery/stm32f429-discovery.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/board/st/stm32f429-discovery/stm32f429-discovery.c b/board/st/stm32f429-discovery/stm32f429-discovery.c index 7e8df8eaef4..7e62bd2aa26 100644 --- a/board/st/stm32f429-discovery/stm32f429-discovery.c +++ b/board/st/stm32f429-discovery/stm32f429-discovery.c @@ -17,7 +17,6 @@ #include <asm/io.h> #include <asm/arch/stm32.h> #include <asm/arch/gpio.h> -#include <dm/platform_data/serial_stm32.h> #include <asm/arch/stm32_periph.h> #include <asm/arch/stm32_defs.h> @@ -168,15 +167,6 @@ int dram_init_banksize(void) return 0; } -static const struct stm32_serial_platdata serial_platdata = { - .base = (struct stm32_usart *)STM32_USART1_BASE, -}; - -U_BOOT_DEVICE(stm32_serials) = { - .name = "serial_stm32", - .platdata = &serial_platdata, -}; - u32 get_board_rev(void) { return 0; |