2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-12-19 23:29:24 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 Vladimir Zapolskiy <vz@mleia.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _LPC32XX_HSUART_PLAT_H
|
|
|
|
|
#define _LPC32XX_HSUART_PLAT_H
|
|
|
|
|
|
|
|
|
|
/**
|
2020-12-03 16:55:23 -07:00
|
|
|
* struct lpc32xx_hsuart_plat - NXP LPC32xx HSUART platform data
|
2015-12-19 23:29:24 +02:00
|
|
|
*
|
|
|
|
|
* @base: Base register address
|
|
|
|
|
*/
|
2020-12-03 16:55:23 -07:00
|
|
|
struct lpc32xx_hsuart_plat {
|
2015-12-19 23:29:24 +02:00
|
|
|
unsigned long base;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|