Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 1 | /* |
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 */ | ||||
12 | struct 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 */ |