diff options
Diffstat (limited to 'roms/u-boot/include/dm/platform_data/lpc32xx_hsuart.h')
-rw-r--r-- | roms/u-boot/include/dm/platform_data/lpc32xx_hsuart.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roms/u-boot/include/dm/platform_data/lpc32xx_hsuart.h b/roms/u-boot/include/dm/platform_data/lpc32xx_hsuart.h new file mode 100644 index 000000000..6f41e0e73 --- /dev/null +++ b/roms/u-boot/include/dm/platform_data/lpc32xx_hsuart.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (c) 2015 Vladimir Zapolskiy <vz@mleia.com> + */ + +#ifndef _LPC32XX_HSUART_PLAT_H +#define _LPC32XX_HSUART_PLAT_H + +/** + * struct lpc32xx_hsuart_plat - NXP LPC32xx HSUART platform data + * + * @base: Base register address + */ +struct lpc32xx_hsuart_plat { + unsigned long base; +}; + +#endif |