mcspi.h 288 B

12345678910111213141516
  1. #ifndef _OMAP2_MCSPI_H
  2. #define _OMAP2_MCSPI_H
  3. struct omap2_mcspi_platform_config {
  4. unsigned long base;
  5. unsigned short num_cs;
  6. };
  7. struct omap2_mcspi_device_config {
  8. unsigned turbo_mode:1;
  9. /* Do we want one channel enabled at the same time? */
  10. unsigned single_channel:1;
  11. };
  12. #endif