efm32-uart.h 354 B

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