From f21069ed82413498c2512115564cd6bfae22ede5 Mon Sep 17 00:00:00 2001 From: Vladimir Zapolskiy Date: Sat, 19 Dec 2015 23:29:24 +0200 Subject: serial: lpc32xx hsuart: port driver to driver model The change ports NXP LPC32xx 14-clock UART device driver to driver model. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Simon Glass --- include/dm/platform_data/lpc32xx_hsuart.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/dm/platform_data/lpc32xx_hsuart.h (limited to 'include/dm') diff --git a/include/dm/platform_data/lpc32xx_hsuart.h b/include/dm/platform_data/lpc32xx_hsuart.h new file mode 100644 index 0000000000..fd191b5bd5 --- /dev/null +++ b/include/dm/platform_data/lpc32xx_hsuart.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2015 Vladimir Zapolskiy + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef _LPC32XX_HSUART_PLAT_H +#define _LPC32XX_HSUART_PLAT_H + +/** + * struct lpc32xx_hsuart_platdata - NXP LPC32xx HSUART platform data + * + * @base: Base register address + */ +struct lpc32xx_hsuart_platdata { + unsigned long base; +}; + +#endif -- cgit v1.2.1