We need to pass the I2C IP revision from the hwmod class up into the OMAP I2C driver, which does not have direct access to it.
This adds a member to the platform data the OMAP I2C driver does use already to hold the I2C IP revision. Cc: [email protected] Cc: Ben Dooks <[email protected]> Reported-by: Peter Maydell <[email protected]> Signed-off-by: Andy Green <[email protected]> --- include/linux/i2c-omap.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/i2c-omap.h b/include/linux/i2c-omap.h index 701886d..b321211 100644 --- a/include/linux/i2c-omap.h +++ b/include/linux/i2c-omap.h @@ -17,6 +17,7 @@ struct omap_i2c_bus_platform_data { u32 clkrate; + u32 rev; void (*set_mpu_wkup_lat)(struct device *dev, long set); int (*device_enable) (struct platform_device *pdev); int (*device_shutdown) (struct platform_device *pdev); -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
