1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2015 4 * Kamil Lulko, <kamil.lulko@gmail.com> 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 */ 16