The i2c probe functions here don't use the id information provided in
their second argument, so the single-parameter i2c probe function
("probe_new") can be used instead.
This avoids scanning the identifier tables during probes.
Signed-off-by: Stephen Kitt <steve@sk2.org>
Reviewed-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20220325171243.1218003-1-steve@sk2.org
Signed-off-by: Mark Brown <broonie@kernel.org>
        .cache_type = REGCACHE_RBTREE,
 };
 
-static int da7210_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int da7210_i2c_probe(struct i2c_client *i2c)
 {
        struct da7210_priv *da7210;
        int ret;
        .driver = {
                .name = "da7210",
        },
-       .probe          = da7210_i2c_probe,
+       .probe_new      = da7210_i2c_probe,
        .id_table       = da7210_i2c_id,
 };
 #endif
 
        [DA7213_SUPPLY_VDDIO] = "VDDIO",
 };
 
-static int da7213_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int da7213_i2c_probe(struct i2c_client *i2c)
 {
        struct da7213_priv *da7213;
        int i, ret;
                .acpi_match_table = ACPI_PTR(da7213_acpi_match),
                .pm = &da7213_pm,
        },
-       .probe          = da7213_i2c_probe,
+       .probe_new      = da7213_i2c_probe,
        .id_table       = da7213_i2c_id,
 };
 
 
  * I2C layer
  */
 
-static int da7219_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int da7219_i2c_probe(struct i2c_client *i2c)
 {
        struct device *dev = &i2c->dev;
        struct da7219_priv *da7219;
                .of_match_table = of_match_ptr(da7219_of_match),
                .acpi_match_table = ACPI_PTR(da7219_acpi_match),
        },
-       .probe          = da7219_i2c_probe,
+       .probe_new      = da7219_i2c_probe,
        .remove         = da7219_i2c_remove,
        .id_table       = da7219_i2c_id,
 };
 
        .non_legacy_dai_naming  = 1,
 };
 
-static int da732x_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int da732x_i2c_probe(struct i2c_client *i2c)
 {
        struct da732x_priv *da732x;
        unsigned int reg;
        .driver         = {
                .name   = "da7320",
        },
-       .probe          = da732x_i2c_probe,
+       .probe_new      = da732x_i2c_probe,
        .remove         = da732x_i2c_remove,
        .id_table       = da732x_i2c_id,
 };
 
        .cache_type = REGCACHE_RBTREE,
 };
 
-static int da9055_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int da9055_i2c_probe(struct i2c_client *i2c)
 {
        struct da9055_priv *da9055;
        struct da9055_platform_data *pdata = dev_get_platdata(&i2c->dev);
                .name = "da9055-codec",
                .of_match_table = of_match_ptr(da9055_of_match),
        },
-       .probe          = da9055_i2c_probe,
+       .probe_new      = da9055_i2c_probe,
        .id_table       = da9055_i2c_id,
 };