diff options
author | Vladimir Zapolskiy <vz@mleia.com> | 2015-12-19 23:29:24 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-01-13 21:05:22 -0500 |
commit | f21069ed82413498c2512115564cd6bfae22ede5 (patch) | |
tree | 383e8f12f444f1bb5ba210a5d0fac82ae467c81b /include/dm | |
parent | 08eee2718aefea16d7a7e32e318ff03a1539e5c2 (diff) |
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 <vz@mleia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/platform_data/lpc32xx_hsuart.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/dm/platform_data/lpc32xx_hsuart.h b/include/dm/platform_data/lpc32xx_hsuart.h new file mode 100644 index 00000000000..fd191b5bd58 --- /dev/null +++ b/include/dm/platform_data/lpc32xx_hsuart.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2015 Vladimir Zapolskiy <vz@mleia.com> + * 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 |