i2c-imx.h 420 B

123456789101112131415161718192021
  1. /*
  2. * i2c.h - i.MX I2C driver header file
  3. *
  4. * Copyright (c) 2008, Darius Augulis <augulis.darius@gmail.com>
  5. *
  6. * This file is released under the GPLv2
  7. */
  8. #ifndef __ASM_ARCH_I2C_H_
  9. #define __ASM_ARCH_I2C_H_
  10. /**
  11. * struct imxi2c_platform_data - structure of platform data for MXC I2C driver
  12. * @bitrate: Bus speed measured in Hz
  13. *
  14. **/
  15. struct imxi2c_platform_data {
  16. u32 bitrate;
  17. };
  18. #endif /* __ASM_ARCH_I2C_H_ */