i2c-pxa.h 354 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * i2c_pxa.h
  4. *
  5. * Copyright (C) 2002 Intrinsyc Software Inc.
  6. */
  7. #ifndef _I2C_PXA_H_
  8. #define _I2C_PXA_H_
  9. struct i2c_pxa_platform_data {
  10. unsigned int class;
  11. unsigned int use_pio :1;
  12. unsigned int fast_mode :1;
  13. unsigned int high_mode:1;
  14. unsigned char master_code;
  15. unsigned long rate;
  16. };
  17. #endif