mcspi.h 267 B

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