},
 };
 
-static const struct i2c_device_id tps_65023_id = {
-       .name = "tps65023",
-       .driver_data = (unsigned long) &tps65023_regs[0],
+static const struct i2c_device_id tps_65023_id[] = {
+       {.name = "tps65023",
+       .driver_data = (unsigned long) tps65023_regs,},
+       { },
 };
 
 MODULE_DEVICE_TABLE(i2c, tps_65023_id);
        },
        .probe = tps_65023_probe,
        .remove = __devexit_p(tps_65023_remove),
-       .id_table = &tps_65023_id,
+       .id_table = tps_65023_id,
 };
 
 /**
 
 MODULE_AUTHOR("Texas Instruments");
 MODULE_DESCRIPTION("TPS65023 voltage regulator driver");
-MODULE_LICENSE("GPLv2");
+MODULE_LICENSE("GPL v2");
 
        },
 };
 
-static const struct i2c_device_id tps_6507x_id = {
-       .name = "tps6507x",
-       .driver_data = (unsigned long) &tps6507x_regs[0],
+static const struct i2c_device_id tps_6507x_id[] = {
+       {.name = "tps6507x",
+       .driver_data = (unsigned long) tps6507x_regs,},
+       { },
 };
 MODULE_DEVICE_TABLE(i2c, tps_6507x_id);
 
        },
        .probe = tps_6507x_probe,
        .remove = __devexit_p(tps_6507x_remove),
-       .id_table = &tps_6507x_id,
+       .id_table = tps_6507x_id,
 };
 
 /**
 
 MODULE_AUTHOR("Texas Instruments");
 MODULE_DESCRIPTION("TPS6507x voltage regulator driver");
-MODULE_LICENSE("GPLv2");
+MODULE_LICENSE("GPL v2");