lpc32xx_hsuart.h 358 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2015 Vladimir Zapolskiy <vz@mleia.com>
  4. */
  5. #ifndef _LPC32XX_HSUART_PLAT_H
  6. #define _LPC32XX_HSUART_PLAT_H
  7. /**
  8. * struct lpc32xx_hsuart_platdata - NXP LPC32xx HSUART platform data
  9. *
  10. * @base: Base register address
  11. */
  12. struct lpc32xx_hsuart_platdata {
  13. unsigned long base;
  14. };
  15. #endif