{}
 };
 
+static const struct i2c_inst_data int3515_data[]  = {
+       { "tps6598x", IRQ_RESOURCE_APIC, 0 },
+       { "tps6598x", IRQ_RESOURCE_APIC, 1 },
+       { "tps6598x", IRQ_RESOURCE_APIC, 2 },
+       { "tps6598x", IRQ_RESOURCE_APIC, 3 },
+       {}
+};
+
 /*
  * Note new device-ids must also be added to i2c_multi_instantiate_ids in
  * drivers/acpi/scan.c: acpi_device_enumeration_by_parent().
  */
 static const struct acpi_device_id i2c_multi_inst_acpi_ids[] = {
        { "BSG1160", (unsigned long)bsg1160_data },
+       { "INT3515", (unsigned long)int3515_data },
        { }
 };
 MODULE_DEVICE_TABLE(acpi, i2c_multi_inst_acpi_ids);
 
        return 0;
 }
 
-static const struct acpi_device_id tps6598x_acpi_match[] = {
-       { "INT3515", 0 },
+static const struct i2c_device_id tps6598x_id[] = {
+       { "tps6598x" },
        { }
 };
-MODULE_DEVICE_TABLE(acpi, tps6598x_acpi_match);
+MODULE_DEVICE_TABLE(i2c, tps6598x_id);
 
 static struct i2c_driver tps6598x_i2c_driver = {
        .driver = {
                .name = "tps6598x",
-               .acpi_match_table = tps6598x_acpi_match,
        },
        .probe_new = tps6598x_probe,
        .remove = tps6598x_remove,
+       .id_table = tps6598x_id,
 };
 module_i2c_driver(tps6598x_i2c_driver);