efm32-spi.h 336 B

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