blob: 7472449cbb7416b7a23f964e542af373fda2411e [file] [log] [blame]
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -07001#ifndef __I2C_OMAP_H__
2#define __I2C_OMAP_H__
3
Paul Walmsley4d17aeb2010-09-21 19:37:15 +05304#include <linux/platform_device.h>
5
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -07006struct omap_i2c_bus_platform_data {
7 u32 clkrate;
8 void (*set_mpu_wkup_lat)(struct device *dev, long set);
Paul Walmsley4d17aeb2010-09-21 19:37:15 +05309 int (*device_enable) (struct platform_device *pdev);
10 int (*device_shutdown) (struct platform_device *pdev);
11 int (*device_idle) (struct platform_device *pdev);
Kalle Jokiniemi20c9d2c2010-05-11 11:35:08 -070012};
13
14#endif