]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
serial: stm32x7: migrate serial struct to driver
authorPatrice Chotard <patrice.chotard@st.com>
Tue, 18 Jul 2017 07:29:07 +0000 (09:29 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 26 Jul 2017 15:26:54 +0000 (11:26 -0400)
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>
board/st/stm32f746-disco/stm32f746-disco.c
drivers/serial/serial_stm32x7.c
drivers/serial/serial_stm32x7.h
include/dm/platform_data/serial_stm32x7.h [deleted file]

index fc4c60c3a4b230cbfb5555e19266efc9357ff068..e3b662ba722ae855ff212ecb271776672d515a31 100644 (file)
@@ -14,7 +14,6 @@
 #include <asm/arch/stm32.h>
 #include <asm/arch/gpio.h>
 #include <asm/arch/fmc.h>
-#include <dm/platform_data/serial_stm32x7.h>
 #include <asm/arch/stm32_periph.h>
 #include <asm/arch/stm32_defs.h>
 #include <asm/arch/syscfg.h>
index 61e8167a3bc9e1d4df566aaccc61c27de6dacb4c..05c73da2301245cbe9190017e4b40446827103b3 100644 (file)
@@ -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;
index facfdbabe89000808e16a4ea1c170fd11374eed3..42b05f14b52a682163ad1c28a379adc787a40b4d 100644 (file)
@@ -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)
diff --git a/include/dm/platform_data/serial_stm32x7.h b/include/dm/platform_data/serial_stm32x7.h
deleted file mode 100644 (file)
index 328a8a3..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * (C) Copyright 2016
- * Vikas Manocha, <vikas.manocha@st.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
- */
-
-#ifndef __SERIAL_STM32x7_H
-#define __SERIAL_STM32x7_H
-
-/* Information about a serial port */
-struct stm32x7_serial_platdata {
-       struct stm32_usart *base;  /* address of registers in physical memory */
-       unsigned int clock;
-};
-
-#endif /* __SERIAL_STM32x7_H */