blob: 328a8a3ff22cc958c8a9983a5f75369893a62cb8 [file] [log] [blame]
Vikas Manocha5dba05e2016-02-11 15:47:19 -08001/*
2 * (C) Copyright 2016
3 * Vikas Manocha, <vikas.manocha@st.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef __SERIAL_STM32x7_H
9#define __SERIAL_STM32x7_H
10
11/* Information about a serial port */
12struct stm32x7_serial_platdata {
13 struct stm32_usart *base; /* address of registers in physical memory */
14 unsigned int clock;
15};
16
17#endif /* __SERIAL_STM32x7_H */