diff options
author | Patrice Chotard | 2017-07-18 09:29:07 +0200 |
---|---|---|
committer | Tom Rini | 2017-07-26 11:26:54 -0400 |
commit | 122b2d4763e82e13f9b2735624813266047ddcd5 (patch) | |
tree | e1f98eee7edaefe3300317cc514bc83a3990a45a /drivers | |
parent | b9e86511d138dcca75171b846111373481f1ea6d (diff) |
serial: stm32x7: migrate serial struct to driver
This allow to remove include/dm/platform_data/serial_stm32x7.h
which was included in the past by stm32x7 driver and by
stm32f746-disco.c board file.
Since patch 42bf5e7c27 "serial: stm32f7: add device tree support"
this file is no more needed in board file.
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Acked-by: Vikas MANOCHA <vikas.manocha@st.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/serial/serial_stm32x7.c | 1 | ||||
-rw-r--r-- | drivers/serial/serial_stm32x7.h | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/serial/serial_stm32x7.c b/drivers/serial/serial_stm32x7.c index 61e8167a3bc..05c73da2301 100644 --- a/drivers/serial/serial_stm32x7.c +++ b/drivers/serial/serial_stm32x7.c @@ -11,7 +11,6 @@ #include <asm/io.h> #include <serial.h> #include <asm/arch/stm32.h> -#include <dm/platform_data/serial_stm32x7.h> #include "serial_stm32x7.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/drivers/serial/serial_stm32x7.h b/drivers/serial/serial_stm32x7.h index facfdbabe89..42b05f14b52 100644 --- a/drivers/serial/serial_stm32x7.h +++ b/drivers/serial/serial_stm32x7.h @@ -22,6 +22,11 @@ struct stm32_usart { u32 tx_dr; }; +/* Information about a serial port */ +struct stm32x7_serial_platdata { + struct stm32_usart *base; /* address of registers in physical memory */ + unsigned int clock; +}; #define USART_CR1_OVER8 (1 << 15) #define USART_CR1_TE (1 << 3) |