mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
f21069ed82
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>
18 lines
355 B
C
18 lines
355 B
C
/*
|
|
* 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
|