.cache_type = REGCACHE_RBTREE,
 };
 
-static int es8316_i2c_probe(struct i2c_client *i2c_client,
-                           const struct i2c_device_id *id)
+static int es8316_i2c_probe(struct i2c_client *i2c_client)
 {
        struct device *dev = &i2c_client->dev;
        struct es8316_priv *es8316;
                .acpi_match_table       = ACPI_PTR(es8316_acpi_match),
                .of_match_table         = of_match_ptr(es8316_of_match),
        },
-       .probe          = es8316_i2c_probe,
+       .probe_new      = es8316_i2c_probe,
        .id_table       = es8316_i2c_id,
 };
 module_i2c_driver(es8316_i2c_driver);
 
 };
 MODULE_DEVICE_TABLE(of, es8328_of_match);
 
-static int es8328_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int es8328_i2c_probe(struct i2c_client *i2c)
 {
        return es8328_probe(&i2c->dev,
                        devm_regmap_init_i2c(i2c, &es8328_regmap_config));
                .name           = "es8328",
                .of_match_table = es8328_of_match,
        },
-       .probe    = es8328_i2c_probe,
+       .probe_new = es8328_i2c_probe,
        .id_table = es8328_id,
 };