i2c-ocores.h 654 B

123456789101112131415161718192021
  1. /*
  2. * i2c-ocores.h - definitions for the i2c-ocores interface
  3. *
  4. * Peter Korsgaard <jacmet@sunsite.dk>
  5. *
  6. * This file is licensed under the terms of the GNU General Public License
  7. * version 2. This program is licensed "as is" without any warranty of any
  8. * kind, whether express or implied.
  9. */
  10. #ifndef _LINUX_I2C_OCORES_H
  11. #define _LINUX_I2C_OCORES_H
  12. struct ocores_i2c_platform_data {
  13. u32 reg_shift; /* register offset shift value */
  14. u32 clock_khz; /* input clock in kHz */
  15. u8 num_devices; /* number of devices in the devices list */
  16. struct i2c_board_info const *devices; /* devices connected to the bus */
  17. };
  18. #endif /* _LINUX_I2C_OCORES_H */