i2c-omap.h 368 B

1234567891011121314
  1. #ifndef __I2C_OMAP_H__
  2. #define __I2C_OMAP_H__
  3. #include <linux/platform_device.h>
  4. struct omap_i2c_bus_platform_data {
  5. u32 clkrate;
  6. void (*set_mpu_wkup_lat)(struct device *dev, long set);
  7. int (*device_enable) (struct platform_device *pdev);
  8. int (*device_shutdown) (struct platform_device *pdev);
  9. int (*device_idle) (struct platform_device *pdev);
  10. };
  11. #endif