Hi Bartosz, ... > struct davinci_i2c_dev { > struct device *dev; > void __iomem *base; > @@ -132,13 +133,10 @@ struct davinci_i2c_dev { > #ifdef CONFIG_CPU_FREQ > struct notifier_block freq_transition; > #endif > - struct davinci_i2c_platform_data *pdata; > -}; > - > -/* default platform data to use if not supplied in the platform_device */ > -static struct davinci_i2c_platform_data davinci_i2c_platform_data_default = { > - .bus_freq = 100, > - .bus_delay = 0, what happened to bus_delay? ... > + /* standard bus frequency (kHz) */ > + unsigned int bus_freq; > + /* Chip has a ICPFUNC register */ > + bool has_pfunc; > }; > -static struct i2c_bus_recovery_info davinci_i2c_gpio_recovery_info = { > - .recover_bus = i2c_generic_scl_recovery, > - .prepare_recovery = davinci_i2c_prepare_recovery, > - .unprepare_recovery = davinci_i2c_unprepare_recovery, > -}; > - what happened to the gpio_recovery_info? Andi