mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
665624149a
Signed-off-by: Kamil Lulko <kamil.lulko@gmail.com> Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
16 lines
338 B
C
16 lines
338 B
C
/*
|
|
* (C) Copyright 2015
|
|
* Kamil Lulko, <kamil.lulko@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __SERIAL_STM32_H
|
|
#define __SERIAL_STM32_H
|
|
|
|
/* Information about a serial port */
|
|
struct stm32_serial_platdata {
|
|
struct stm32_usart *base; /* address of registers in physical memory */
|
|
};
|
|
|
|
#endif /* __SERIAL_STM32_H */
|