home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / sh / include / asm / spi.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  226 b   |  14 lines

  1. #ifndef __ASM_SPI_H__
  2. #define __ASM_SPI_H__
  3.  
  4. struct sh_spi_info;
  5.  
  6. struct sh_spi_info {
  7.     int             bus_num;
  8.     int             num_chipselect;
  9.  
  10.     void (*chip_select)(struct sh_spi_info *spi, int cs, int state);
  11. };
  12.  
  13. #endif /* __ASM_SPI_H__ */
  14.