Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Kamil Lulko | 75d48a6 | 2015-12-01 09:08:19 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2015 |
| 4 | * Kamil Lulko, <kamil.lulko@gmail.com> |
Kamil Lulko | 75d48a6 | 2015-12-01 09:08:19 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __SERIAL_STM32_H |
| 8 | #define __SERIAL_STM32_H |
| 9 | |
| 10 | /* Information about a serial port */ |
| 11 | struct stm32_serial_platdata { |
| 12 | struct stm32_usart *base; /* address of registers in physical memory */ |
| 13 | }; |
| 14 | |
| 15 | #endif /* __SERIAL_STM32_H */ |