ASoC: wm*: use simple i2c probe function
authorStephen Kitt <steve@sk2.org>
Tue, 5 Apr 2022 12:24:11 +0000 (14:24 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 6 Apr 2022 22:37:53 +0000 (23:37 +0100)
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.

wm8731.c is excluded and will be submitted separately.

This avoids scanning the identifier tables during probes.

Signed-off-by: Stephen Kitt <steve@sk2.org>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220405122411.2096387-1-steve@sk2.org
Signed-off-by: Mark Brown <broonie@kernel.org>
34 files changed:
sound/soc/codecs/wm1250-ev1.c
sound/soc/codecs/wm2000.c
sound/soc/codecs/wm2200.c
sound/soc/codecs/wm5100.c
sound/soc/codecs/wm8510.c
sound/soc/codecs/wm8523.c
sound/soc/codecs/wm8580.c
sound/soc/codecs/wm8711.c
sound/soc/codecs/wm8728.c
sound/soc/codecs/wm8737.c
sound/soc/codecs/wm8741.c
sound/soc/codecs/wm8750.c
sound/soc/codecs/wm8753.c
sound/soc/codecs/wm8776.c
sound/soc/codecs/wm8804-i2c.c
sound/soc/codecs/wm8900.c
sound/soc/codecs/wm8903.c
sound/soc/codecs/wm8940.c
sound/soc/codecs/wm8955.c
sound/soc/codecs/wm8960.c
sound/soc/codecs/wm8961.c
sound/soc/codecs/wm8962.c
sound/soc/codecs/wm8971.c
sound/soc/codecs/wm8974.c
sound/soc/codecs/wm8978.c
sound/soc/codecs/wm8983.c
sound/soc/codecs/wm8988.c
sound/soc/codecs/wm8990.c
sound/soc/codecs/wm8991.c
sound/soc/codecs/wm8993.c
sound/soc/codecs/wm8995.c
sound/soc/codecs/wm8996.c
sound/soc/codecs/wm9081.c
sound/soc/codecs/wm9090.c

index d6ffe99550fe3e46aa91ec0eace414dc6e40a7ce..b6366dea15a6724ddec32611ac6f7d0418c3bf03 100644 (file)
@@ -192,8 +192,7 @@ static void wm1250_ev1_free(struct i2c_client *i2c)
                gpio_free_array(wm1250->gpios, ARRAY_SIZE(wm1250->gpios));
 }
 
-static int wm1250_ev1_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *i2c_id)
+static int wm1250_ev1_probe(struct i2c_client *i2c)
 {
        int id, board, rev, ret;
 
@@ -247,7 +246,7 @@ static struct i2c_driver wm1250_ev1_i2c_driver = {
        .driver = {
                .name = "wm1250-ev1",
        },
-       .probe =    wm1250_ev1_probe,
+       .probe_new = wm1250_ev1_probe,
        .remove =   wm1250_ev1_remove,
        .id_table = wm1250_ev1_i2c_id,
 };
index 72e165cc64439750663f4857a06fd4c20a7ff38d..075ee852eb72418e53953747df4fa0790032e710 100644 (file)
@@ -807,8 +807,7 @@ static const struct snd_soc_component_driver soc_component_dev_wm2000 = {
        .non_legacy_dai_naming  = 1,
 };
 
-static int wm2000_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *i2c_id)
+static int wm2000_i2c_probe(struct i2c_client *i2c)
 {
        struct wm2000_priv *wm2000;
        struct wm2000_platform_data *pdata;
@@ -941,7 +940,7 @@ static struct i2c_driver wm2000_i2c_driver = {
        .driver = {
                .name = "wm2000",
        },
-       .probe = wm2000_i2c_probe,
+       .probe_new = wm2000_i2c_probe,
        .id_table = wm2000_i2c_id,
 };
 
index 8863b533f9c417b60cff28a1a610906766dc6431..1cd544580c83272d5a32e3478164e9d31d839d67 100644 (file)
@@ -2176,8 +2176,7 @@ static const unsigned int wm2200_mic_ctrl_reg[] = {
        WM2200_IN3L_CONTROL,
 };
 
-static int wm2200_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm2200_i2c_probe(struct i2c_client *i2c)
 {
        struct wm2200_pdata *pdata = dev_get_platdata(&i2c->dev);
        struct wm2200_priv *wm2200;
@@ -2489,7 +2488,7 @@ static struct i2c_driver wm2200_i2c_driver = {
                .name = "wm2200",
                .pm = &wm2200_pm,
        },
-       .probe =    wm2200_i2c_probe,
+       .probe_new = wm2200_i2c_probe,
        .remove =   wm2200_i2c_remove,
        .id_table = wm2200_i2c_id,
 };
index 9cab01ee4ee91626ff1c9359ccf322deb0120efc..a89870918174b57ca9f6991b32fc563e9b200f84 100644 (file)
@@ -2411,8 +2411,7 @@ static const unsigned int wm5100_mic_ctrl_reg[] = {
        WM5100_IN4L_CONTROL,
 };
 
-static int wm5100_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm5100_i2c_probe(struct i2c_client *i2c)
 {
        struct wm5100_pdata *pdata = dev_get_platdata(&i2c->dev);
        struct wm5100_priv *wm5100;
@@ -2713,7 +2712,7 @@ static struct i2c_driver wm5100_i2c_driver = {
                .name = "wm5100",
                .pm = &wm5100_pm,
        },
-       .probe =    wm5100_i2c_probe,
+       .probe_new = wm5100_i2c_probe,
        .remove =   wm5100_i2c_remove,
        .id_table = wm5100_i2c_id,
 };
index a18e2290b8c8896c11bddd485b68b5e07deeb420..c6439d25006bf58cf1509c291ed044b67ec296d8 100644 (file)
@@ -646,8 +646,7 @@ static struct spi_driver wm8510_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8510_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8510_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8510_priv *wm8510;
        int ret;
@@ -680,7 +679,7 @@ static struct i2c_driver wm8510_i2c_driver = {
                .name = "wm8510",
                .of_match_table = wm8510_of_match,
        },
-       .probe =    wm8510_i2c_probe,
+       .probe_new = wm8510_i2c_probe,
        .id_table = wm8510_i2c_id,
 };
 #endif
index c8b50aac6c180ed9f88f9f71496d8beda1ab538a..ba35a0221dc847359c78b2caac158c0d1b116f0c 100644 (file)
@@ -443,8 +443,7 @@ static const struct regmap_config wm8523_regmap = {
        .volatile_reg = wm8523_volatile_register,
 };
 
-static int wm8523_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8523_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8523_priv *wm8523;
        unsigned int val;
@@ -529,7 +528,7 @@ static struct i2c_driver wm8523_i2c_driver = {
                .name = "wm8523",
                .of_match_table = wm8523_of_match,
        },
-       .probe =    wm8523_i2c_probe,
+       .probe_new = wm8523_i2c_probe,
        .id_table = wm8523_i2c_id,
 };
 
index 85ad2f03cfd0c00844212c5049a25af8c914ec48..84020195314d94212e0f405ff6fdd8952f6e66a4 100644 (file)
@@ -996,8 +996,7 @@ static const struct of_device_id wm8580_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, wm8580_of_match);
 
-static int wm8580_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8580_i2c_probe(struct i2c_client *i2c)
 {
        const struct of_device_id *of_id;
        struct wm8580_priv *wm8580;
@@ -1051,7 +1050,7 @@ static struct i2c_driver wm8580_i2c_driver = {
                .name = "wm8580",
                .of_match_table = wm8580_of_match,
        },
-       .probe =    wm8580_i2c_probe,
+       .probe_new = wm8580_i2c_probe,
        .id_table = wm8580_i2c_id,
 };
 
index bc4d161c59e5c586adbdef50567985f015f53c58..b68a1ebcd0617d9effa40939a8b1eb6613cb4a25 100644 (file)
@@ -432,8 +432,7 @@ static struct spi_driver wm8711_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8711_i2c_probe(struct i2c_client *client,
-                           const struct i2c_device_id *id)
+static int wm8711_i2c_probe(struct i2c_client *client)
 {
        struct wm8711_priv *wm8711;
        int ret;
@@ -466,7 +465,7 @@ static struct i2c_driver wm8711_i2c_driver = {
                .name = "wm8711",
                .of_match_table = wm8711_of_match,
        },
-       .probe =    wm8711_i2c_probe,
+       .probe_new = wm8711_i2c_probe,
        .id_table = wm8711_i2c_id,
 };
 #endif
index 2cd58d133899da0468bda1fe09d9385f275c2e25..119ff0a1bb35c34364bf7aa7484d32535987b7e0 100644 (file)
@@ -273,8 +273,7 @@ static struct spi_driver wm8728_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8728_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8728_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8728_priv *wm8728;
        int ret;
@@ -307,7 +306,7 @@ static struct i2c_driver wm8728_i2c_driver = {
                .name = "wm8728",
                .of_match_table = wm8728_of_match,
        },
-       .probe =    wm8728_i2c_probe,
+       .probe_new = wm8728_i2c_probe,
        .id_table = wm8728_i2c_id,
 };
 #endif
index 7a3f9fbe8d53d8677649a690ec1a8e581f4ad215..5778091d1c09f51d900b90e3f16f219b479fcf6c 100644 (file)
@@ -606,8 +606,7 @@ static const struct regmap_config wm8737_regmap = {
 };
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8737_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8737_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8737_priv *wm8737;
        int ret, i;
@@ -651,7 +650,7 @@ static struct i2c_driver wm8737_i2c_driver = {
                .name = "wm8737",
                .of_match_table = wm8737_of_match,
        },
-       .probe =    wm8737_i2c_probe,
+       .probe_new = wm8737_i2c_probe,
        .id_table = wm8737_i2c_id,
 };
 #endif
index 0e3994326936d89182945833511490f617b6f72b..871e2c5421b86b5d35564926529329c92eb7c92e 100644 (file)
@@ -565,8 +565,7 @@ static int wm8741_set_pdata(struct device *dev, struct wm8741_priv *wm8741)
 }
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8741_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8741_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8741_priv *wm8741;
        int ret, i;
@@ -618,7 +617,7 @@ static struct i2c_driver wm8741_i2c_driver = {
                .name = "wm8741",
                .of_match_table = wm8741_of_match,
        },
-       .probe =    wm8741_i2c_probe,
+       .probe_new = wm8741_i2c_probe,
        .id_table = wm8741_i2c_id,
 };
 #endif
index 9491817020d85cb9e247ec9dfd661099cac5ff6a..1426fc1f7c5ac13fb12637694603cbc9feda701d 100644 (file)
@@ -780,8 +780,7 @@ static struct spi_driver wm8750_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8750_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8750_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8750_priv *wm8750;
        struct regmap *regmap;
@@ -815,7 +814,7 @@ static struct i2c_driver wm8750_i2c_driver = {
                .name = "wm8750",
                .of_match_table = wm8750_of_match,
        },
-       .probe =    wm8750_i2c_probe,
+       .probe_new = wm8750_i2c_probe,
        .id_table = wm8750_i2c_id,
 };
 #endif
index deaa54be6268ab886a8d9a34f71002ac23199fae..931134d334ecacb6c14fb65dd46d7c85e3f87807 100644 (file)
@@ -1552,8 +1552,7 @@ static struct spi_driver wm8753_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8753_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8753_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8753_priv *wm8753;
        int ret;
@@ -1592,7 +1591,7 @@ static struct i2c_driver wm8753_i2c_driver = {
                .name = "wm8753",
                .of_match_table = wm8753_of_match,
        },
-       .probe =    wm8753_i2c_probe,
+       .probe_new = wm8753_i2c_probe,
        .id_table = wm8753_i2c_id,
 };
 #endif
index 554acf56130caee2400504e4811dfb147e1af902..f164cb6744c49339f8ff2edccb8f3ff6749cd384 100644 (file)
@@ -490,8 +490,7 @@ static struct spi_driver wm8776_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8776_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8776_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8776_priv *wm8776;
        int ret;
@@ -525,7 +524,7 @@ static struct i2c_driver wm8776_i2c_driver = {
                .name = "wm8776",
                .of_match_table = wm8776_of_match,
        },
-       .probe =    wm8776_i2c_probe,
+       .probe_new = wm8776_i2c_probe,
        .id_table = wm8776_i2c_id,
 };
 #endif
index f97a75e641663c3bb007d53b8ebab05c3a512484..04dc9fb5afb4ee61210faa0267b2a531bceddc05 100644 (file)
@@ -14,8 +14,7 @@
 
 #include "wm8804.h"
 
-static int wm8804_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8804_i2c_probe(struct i2c_client *i2c)
 {
        struct regmap *regmap;
 
@@ -62,7 +61,7 @@ static struct i2c_driver wm8804_i2c_driver = {
                .of_match_table = of_match_ptr(wm8804_of_match),
                .acpi_match_table = ACPI_PTR(wm8804_acpi_match),
        },
-       .probe = wm8804_i2c_probe,
+       .probe_new = wm8804_i2c_probe,
        .remove = wm8804_i2c_remove,
        .id_table = wm8804_i2c_id
 };
index bf3a4415a85f7c8d3cdf5d994109d81288b4e160..84a3daf0c11e3c62d0add24214abfea73642f470 100644 (file)
@@ -1261,8 +1261,7 @@ static struct spi_driver wm8900_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8900_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8900_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8900_priv *wm8900;
        int ret;
@@ -1299,7 +1298,7 @@ static struct i2c_driver wm8900_i2c_driver = {
        .driver = {
                .name = "wm8900",
        },
-       .probe =    wm8900_i2c_probe,
+       .probe_new = wm8900_i2c_probe,
        .remove =   wm8900_i2c_remove,
        .id_table = wm8900_i2c_id,
 };
index 75f30154c809f3f3c341e2ec3a76ea20244ccfdb..ddcef11dce7c8a2c0bc0a4bee21d4973d327a19f 100644 (file)
@@ -1981,8 +1981,7 @@ static int wm8903_set_pdata_from_of(struct i2c_client *i2c,
        return 0;
 }
 
-static int wm8903_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8903_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8903_platform_data *pdata = dev_get_platdata(&i2c->dev);
        struct wm8903_priv *wm8903;
@@ -2214,7 +2213,7 @@ static struct i2c_driver wm8903_i2c_driver = {
                .name = "wm8903",
                .of_match_table = wm8903_of_match,
        },
-       .probe =    wm8903_i2c_probe,
+       .probe_new = wm8903_i2c_probe,
        .remove =   wm8903_i2c_remove,
        .id_table = wm8903_i2c_id,
 };
index 440d048ef0c02c6cd73572da0636c4dcee2477f5..99b4524f53d8386e8c4ad374e975df86e0641e8e 100644 (file)
@@ -750,8 +750,7 @@ static const struct regmap_config wm8940_regmap = {
        .volatile_reg = wm8940_volatile_register,
 };
 
-static int wm8940_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8940_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8940_priv *wm8940;
        int ret;
@@ -783,7 +782,7 @@ static struct i2c_driver wm8940_i2c_driver = {
        .driver = {
                .name = "wm8940",
        },
-       .probe =    wm8940_i2c_probe,
+       .probe_new = wm8940_i2c_probe,
        .id_table = wm8940_i2c_id,
 };
 
index 513df47bd87d60e9581e9c72882c2f4fdc14a913..80e3cbd704ee0386c20efd6a177e3a97c4178d13 100644 (file)
@@ -968,8 +968,7 @@ static const struct regmap_config wm8955_regmap = {
        .num_reg_defaults = ARRAY_SIZE(wm8955_reg_defaults),
 };
 
-static int wm8955_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8955_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8955_priv *wm8955;
        int ret;
@@ -1005,7 +1004,7 @@ static struct i2c_driver wm8955_i2c_driver = {
        .driver = {
                .name = "wm8955",
        },
-       .probe =    wm8955_i2c_probe,
+       .probe_new = wm8955_i2c_probe,
        .id_table = wm8955_i2c_id,
 };
 
index ca7660f4bb05a86690db7416f35129050f858b9a..92fcd335c5de98a15753144aa3a2ddbda524edb8 100644 (file)
@@ -1410,8 +1410,7 @@ static void wm8960_set_pdata_from_of(struct i2c_client *i2c,
                                   ARRAY_SIZE(pdata->hp_cfg));
 }
 
-static int wm8960_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8960_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8960_data *pdata = dev_get_platdata(&i2c->dev);
        struct wm8960_priv *wm8960;
@@ -1509,7 +1508,7 @@ static struct i2c_driver wm8960_i2c_driver = {
                .name = "wm8960",
                .of_match_table = wm8960_of_match,
        },
-       .probe =    wm8960_i2c_probe,
+       .probe_new = wm8960_i2c_probe,
        .remove =   wm8960_i2c_remove,
        .id_table = wm8960_i2c_id,
 };
index ef80d9fc1eec21d1d34203ed624132beb5d7df25..69eb731dbf4bb60818c1d7f05ca5f08329d4f197 100644 (file)
@@ -911,8 +911,7 @@ static const struct regmap_config wm8961_regmap = {
        .readable_reg = wm8961_readable,
 };
 
-static int wm8961_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8961_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8961_priv *wm8961;
        unsigned int val;
@@ -977,7 +976,7 @@ static struct i2c_driver wm8961_i2c_driver = {
        .driver = {
                .name = "wm8961",
        },
-       .probe =    wm8961_i2c_probe,
+       .probe_new = wm8961_i2c_probe,
        .id_table = wm8961_i2c_id,
 };
 
index 2c41d31956aa888188eb22832154371e38899381..079ad5b24ac5c410bc448c0f2fb573a8f71c9d24 100644 (file)
@@ -3555,8 +3555,7 @@ static int wm8962_set_pdata_from_of(struct i2c_client *i2c,
        return PTR_ERR_OR_ZERO(pdata->mclk);
 }
 
-static int wm8962_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8962_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8962_pdata *pdata = dev_get_platdata(&i2c->dev);
        struct wm8962_priv *wm8962;
@@ -3892,7 +3891,7 @@ static struct i2c_driver wm8962_i2c_driver = {
                .of_match_table = wm8962_of_match,
                .pm = &wm8962_pm,
        },
-       .probe =    wm8962_i2c_probe,
+       .probe_new = wm8962_i2c_probe,
        .remove =   wm8962_i2c_remove,
        .id_table = wm8962_i2c_id,
 };
index ddf0e2f5e66aba18579d2f14745f72e5495a6689..8a289b048e66d3c839b4d0664ae07a19a810f6ea 100644 (file)
@@ -672,8 +672,7 @@ static const struct regmap_config wm8971_regmap = {
        .cache_type = REGCACHE_RBTREE,
 };
 
-static int wm8971_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8971_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8971_priv *wm8971;
 
@@ -702,7 +701,7 @@ static struct i2c_driver wm8971_i2c_driver = {
        .driver = {
                .name = "wm8971",
        },
-       .probe =    wm8971_i2c_probe,
+       .probe_new = wm8971_i2c_probe,
        .id_table = wm8971_i2c_id,
 };
 
index fdc68ab4974274d9fea2a1b84a276f5bd24eb33c..a8d7809f3f64b93ecd3e2bc03f494dd32d7a17f0 100644 (file)
@@ -685,8 +685,7 @@ static const struct snd_soc_component_driver soc_component_dev_wm8974 = {
        .non_legacy_dai_naming  = 1,
 };
 
-static int wm8974_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8974_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8974_priv *priv;
        struct regmap *regmap;
@@ -725,7 +724,7 @@ static struct i2c_driver wm8974_i2c_driver = {
                .name = "wm8974",
                .of_match_table = wm8974_of_match,
        },
-       .probe =    wm8974_i2c_probe,
+       .probe_new = wm8974_i2c_probe,
        .id_table = wm8974_i2c_id,
 };
 
index 7091e1a9d51689125eaebf8ad03080789b44960b..141f50bfec68a1ffb37a87ec3cce965cd5eb0862 100644 (file)
@@ -1020,8 +1020,7 @@ static const struct regmap_config wm8978_regmap_config = {
        .num_reg_defaults = ARRAY_SIZE(wm8978_reg_defaults),
 };
 
-static int wm8978_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8978_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8978_priv *wm8978;
        int ret;
@@ -1074,7 +1073,7 @@ static struct i2c_driver wm8978_i2c_driver = {
                .name = "wm8978",
                .of_match_table = wm8978_of_match,
        },
-       .probe =    wm8978_i2c_probe,
+       .probe_new = wm8978_i2c_probe,
        .id_table = wm8978_i2c_id,
 };
 
index d8ed22a9caac1ae8c4daa64bd30ae47b19ae05c4..ae89554d47bc9f9e9a2622593f1d04162fe9196a 100644 (file)
@@ -1035,8 +1035,7 @@ static struct spi_driver wm8983_spi_driver = {
 #endif
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8983_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8983_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8983_priv *wm8983;
        int ret;
@@ -1070,7 +1069,7 @@ static struct i2c_driver wm8983_i2c_driver = {
        .driver = {
                .name = "wm8983",
        },
-       .probe = wm8983_i2c_probe,
+       .probe_new = wm8983_i2c_probe,
        .id_table = wm8983_i2c_id
 };
 #endif
index 1d2f881bbcae6bb72a619d3237b205012ad4e27a..27538d6598cf14438788e79c784f1a02fd019da6 100644 (file)
@@ -872,8 +872,7 @@ static struct spi_driver wm8988_spi_driver = {
 #endif /* CONFIG_SPI_MASTER */
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8988_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8988_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8988_priv *wm8988;
        int ret;
@@ -907,7 +906,7 @@ static struct i2c_driver wm8988_i2c_driver = {
        .driver = {
                .name = "wm8988",
        },
-       .probe =    wm8988_i2c_probe,
+       .probe_new = wm8988_i2c_probe,
        .id_table = wm8988_i2c_id,
 };
 #endif
index 938940777e5dcdc0b55e070989111fac3c4c8c65..c9448a59c872fdfd0e1c2b9765dd49ff955a6e30 100644 (file)
@@ -1220,8 +1220,7 @@ static const struct snd_soc_component_driver soc_component_dev_wm8990 = {
        .non_legacy_dai_naming  = 1,
 };
 
-static int wm8990_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8990_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8990_priv *wm8990;
        int ret;
@@ -1249,7 +1248,7 @@ static struct i2c_driver wm8990_i2c_driver = {
        .driver = {
                .name = "wm8990",
        },
-       .probe =    wm8990_i2c_probe,
+       .probe_new = wm8990_i2c_probe,
        .id_table = wm8990_i2c_id,
 };
 
index 16bc8609d0d2091640bf4fefc81510a9ce7d4934..998bc89bb7e1268adb1d0ec4c799abe6547c537c 100644 (file)
@@ -1257,8 +1257,7 @@ static const struct regmap_config wm8991_regmap = {
        .cache_type = REGCACHE_RBTREE,
 };
 
-static int wm8991_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8991_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8991_priv *wm8991;
        unsigned int val;
@@ -1325,7 +1324,7 @@ static struct i2c_driver wm8991_i2c_driver = {
        .driver = {
                .name = "wm8991",
        },
-       .probe = wm8991_i2c_probe,
+       .probe_new = wm8991_i2c_probe,
        .id_table = wm8991_i2c_id,
 };
 
index c4f41692b806d72aacafe0d8196cd663595a8115..f4da77ec9d6c24f94508993036705023ea564484 100644 (file)
@@ -1624,8 +1624,7 @@ static const struct snd_soc_component_driver soc_component_dev_wm8993 = {
        .non_legacy_dai_naming  = 1,
 };
 
-static int wm8993_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8993_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8993_priv *wm8993;
        unsigned int reg;
@@ -1745,7 +1744,7 @@ static struct i2c_driver wm8993_i2c_driver = {
        .driver = {
                .name = "wm8993",
        },
-       .probe =    wm8993_i2c_probe,
+       .probe_new = wm8993_i2c_probe,
        .remove =   wm8993_i2c_remove,
        .id_table = wm8993_i2c_id,
 };
index b896d9c5bea0b50f8a8ce2667404547fe1ad4cf5..ea9727446707d645d940a40e6f77a4293077759a 100644 (file)
@@ -2231,8 +2231,7 @@ static struct spi_driver wm8995_spi_driver = {
 #endif
 
 #if IS_ENABLED(CONFIG_I2C)
-static int wm8995_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8995_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8995_priv *wm8995;
        int ret;
@@ -2270,7 +2269,7 @@ static struct i2c_driver wm8995_i2c_driver = {
        .driver = {
                .name = "wm8995",
        },
-       .probe = wm8995_i2c_probe,
+       .probe_new = wm8995_i2c_probe,
        .id_table = wm8995_i2c_id
 };
 #endif
index 197ae7d84a4993c00c170874785a196c74e8b9b5..f7bb27d1c76d0f3c1437e28a1003caa8c60b1c36 100644 (file)
@@ -2755,8 +2755,7 @@ static struct snd_soc_dai_driver wm8996_dai[] = {
        },
 };
 
-static int wm8996_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm8996_i2c_probe(struct i2c_client *i2c)
 {
        struct wm8996_priv *wm8996;
        int ret, i;
@@ -3091,7 +3090,7 @@ static struct i2c_driver wm8996_i2c_driver = {
        .driver = {
                .name = "wm8996",
        },
-       .probe =    wm8996_i2c_probe,
+       .probe_new = wm8996_i2c_probe,
        .remove =   wm8996_i2c_remove,
        .id_table = wm8996_i2c_id,
 };
index 4a667ee82fe20effcef50294560ddb4b52e1074d..87b58448cea7cc3cf5d63259be08ac30d22ee7d1 100644 (file)
@@ -1299,8 +1299,7 @@ static const struct regmap_config wm9081_regmap = {
        .cache_type = REGCACHE_RBTREE,
 };
 
-static int wm9081_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm9081_i2c_probe(struct i2c_client *i2c)
 {
        struct wm9081_priv *wm9081;
        unsigned int reg;
@@ -1373,7 +1372,7 @@ static struct i2c_driver wm9081_i2c_driver = {
        .driver = {
                .name = "wm9081",
        },
-       .probe =    wm9081_i2c_probe,
+       .probe_new = wm9081_i2c_probe,
        .remove =   wm9081_i2c_remove,
        .id_table = wm9081_i2c_id,
 };
index e0231a54609c9e964a45ab9622d2c9c98205feca..1bae81a7d39081551135089e27c5682059dbca18 100644 (file)
@@ -561,8 +561,7 @@ static const struct regmap_config wm9090_regmap = {
 };
 
 
-static int wm9090_i2c_probe(struct i2c_client *i2c,
-                           const struct i2c_device_id *id)
+static int wm9090_i2c_probe(struct i2c_client *i2c)
 {
        struct wm9090_priv *wm9090;
        unsigned int reg;
@@ -619,7 +618,7 @@ static struct i2c_driver wm9090_i2c_driver = {
        .driver = {
                .name = "wm9090",
        },
-       .probe = wm9090_i2c_probe,
+       .probe_new = wm9090_i2c_probe,
        .id_table = wm9090_id,
 };