xref: /openbmc/u-boot/include/dm/platform_data/lpc32xx_hsuart.h (revision c7ba7bdc9d9940313ff5a63644ae3d74c77636cc)
1 /*
2  * Copyright (c) 2015 Vladimir Zapolskiy <vz@mleia.com>
3  * SPDX-License-Identifier:	GPL-2.0+
4  */
5 
6 #ifndef _LPC32XX_HSUART_PLAT_H
7 #define _LPC32XX_HSUART_PLAT_H
8 
9 /**
10  * struct lpc32xx_hsuart_platdata - NXP LPC32xx HSUART platform data
11  *
12  * @base:               Base register address
13  */
14 struct lpc32xx_hsuart_platdata {
15 	unsigned long base;
16 };
17 
18 #endif
19