mv643xx_i2c.h 335 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. */
  4. #ifndef _MV64XXX_I2C_H_
  5. #define _MV64XXX_I2C_H_
  6. #include <linux/types.h>
  7. #define MV64XXX_I2C_CTLR_NAME "mv64xxx_i2c"
  8. /* i2c Platform Device, Driver Data */
  9. struct mv64xxx_i2c_pdata {
  10. u32 freq_m;
  11. u32 freq_n;
  12. u32 timeout; /* In milliseconds */
  13. };
  14. #endif /*_MV64XXX_I2C_H_*/