efm32-uart.h 393 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. *
  4. *
  5. */
  6. #ifndef __LINUX_PLATFORM_DATA_EFM32_UART_H__
  7. #define __LINUX_PLATFORM_DATA_EFM32_UART_H__
  8. #include <linux/types.h>
  9. /**
  10. * struct efm32_uart_pdata
  11. * @location: pinmux location for the I/O pins (to be written to the ROUTE
  12. * register)
  13. */
  14. struct efm32_uart_pdata {
  15. u8 location;
  16. };
  17. #endif /* ifndef __LINUX_PLATFORM_DATA_EFM32_UART_H__ */