serial_stm32.h 338 B

12345678910111213141516
  1. /*
  2. * (C) Copyright 2015
  3. * Kamil Lulko, <kamil.lulko@gmail.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __SERIAL_STM32_H
  8. #define __SERIAL_STM32_H
  9. /* Information about a serial port */
  10. struct stm32_serial_platdata {
  11. struct stm32_usart *base; /* address of registers in physical memory */
  12. };
  13. #endif /* __SERIAL_STM32_H */