static struct device_driver iop3xx_i2c_driver = {
+       .owner          = THIS_MODULE,
        .name           = "IOP3xx-I2C",
        .bus            = &platform_bus_type,
        .probe          = iop3xx_i2c_probe,
 
 }
 
 static struct device_driver ixp2000_i2c_driver = {
+       .owner          = THIS_MODULE,
        .name           = "IXP2000-I2C",
        .bus            = &platform_bus_type,
        .probe          = ixp2000_i2c_probe,
 
 }
 
 static struct device_driver ixp4xx_i2c_driver = {
+       .owner          = THIS_MODULE,
        .name           = "IXP4XX-I2C",
        .bus            = &platform_bus_type,
        .probe          = ixp4xx_i2c_probe,
 
 
 /* Structure for a device driver */
 static struct device_driver fsl_i2c_driver = {
+       .owner = THIS_MODULE,
        .name = "fsl-i2c",
        .bus = &platform_bus_type,
        .probe = fsl_i2c_probe,
 
 }
 
 static struct device_driver mv64xxx_i2c_driver = {
+       .owner  = THIS_MODULE,
        .name   = MV64XXX_I2C_CTLR_NAME,
        .bus    = &platform_bus_type,
        .probe  = mv64xxx_i2c_probe,
 
 /* device driver for platform bus bits */
 
 static struct device_driver s3c2410_i2c_driver = {
+       .owner          = THIS_MODULE,
        .name           = "s3c2410-i2c",
        .bus            = &platform_bus_type,
        .probe          = s3c24xx_i2c_probe,
 };
 
 static struct device_driver s3c2440_i2c_driver = {
+       .owner          = THIS_MODULE,
        .name           = "s3c2440-i2c",
        .bus            = &platform_bus_type,
        .probe          = s3c24xx_i2c_probe,
 
 }
 
 struct device_driver omap_otg_driver = {
+       .owner          = THIS_MODULE,
        .name           = "omap_otg",
        .bus            = &platform_bus_type,
        .probe          = otg_probe,