ASoC: tas*: use simple i2c probe function
authorStephen Kitt <steve@sk2.org>
Tue, 5 Apr 2022 16:58:32 +0000 (18:58 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 11 Apr 2022 18:18:17 +0000 (19:18 +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.

This avoids scanning the identifier tables during probes.

Signed-off-by: Stephen Kitt <steve@sk2.org>
Link: https://lore.kernel.org/r/20220405165836.2165310-11-steve@sk2.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas2552.c
sound/soc/codecs/tas2764.c
sound/soc/codecs/tas2770.c
sound/soc/codecs/tas5086.c
sound/soc/codecs/tas6424.c

index 700baa6..b5c9c61 100644 (file)
@@ -681,8 +681,7 @@ static const struct regmap_config tas2552_regmap_config = {
        .cache_type = REGCACHE_RBTREE,
 };
 
-static int tas2552_probe(struct i2c_client *client,
-                          const struct i2c_device_id *id)
+static int tas2552_probe(struct i2c_client *client)
 {
        struct device *dev;
        struct tas2552_data *data;
@@ -764,7 +763,7 @@ static struct i2c_driver tas2552_i2c_driver = {
                .of_match_table = of_match_ptr(tas2552_of_match),
                .pm = &tas2552_pm,
        },
-       .probe = tas2552_probe,
+       .probe_new = tas2552_probe,
        .remove = tas2552_i2c_remove,
        .id_table = tas2552_id,
 };
index 9265af4..d395fef 100644 (file)
@@ -621,8 +621,7 @@ static int tas2764_parse_dt(struct device *dev, struct tas2764_priv *tas2764)
        return 0;
 }
 
-static int tas2764_i2c_probe(struct i2c_client *client,
-                       const struct i2c_device_id *id)
+static int tas2764_i2c_probe(struct i2c_client *client)
 {
        struct tas2764_priv *tas2764;
        int result;
@@ -678,7 +677,7 @@ static struct i2c_driver tas2764_i2c_driver = {
                .name   = "tas2764",
                .of_match_table = of_match_ptr(tas2764_of_match),
        },
-       .probe      = tas2764_i2c_probe,
+       .probe_new  = tas2764_i2c_probe,
        .id_table   = tas2764_i2c_id,
 };
 module_i2c_driver(tas2764_i2c_driver);
index c5ea3b1..c1dbd97 100644 (file)
@@ -672,8 +672,7 @@ static int tas2770_parse_dt(struct device *dev, struct tas2770_priv *tas2770)
        return 0;
 }
 
-static int tas2770_i2c_probe(struct i2c_client *client,
-                       const struct i2c_device_id *id)
+static int tas2770_i2c_probe(struct i2c_client *client)
 {
        struct tas2770_priv *tas2770;
        int result;
@@ -739,7 +738,7 @@ static struct i2c_driver tas2770_i2c_driver = {
                .name   = "tas2770",
                .of_match_table = of_match_ptr(tas2770_of_match),
        },
-       .probe      = tas2770_i2c_probe,
+       .probe_new  = tas2770_i2c_probe,
        .id_table   = tas2770_i2c_id,
 };
 module_i2c_driver(tas2770_i2c_driver);
index 7831c96..5c0df3c 100644 (file)
@@ -911,8 +911,7 @@ static const struct regmap_config tas5086_regmap = {
        .reg_write              = tas5086_reg_write,
 };
 
-static int tas5086_i2c_probe(struct i2c_client *i2c,
-                            const struct i2c_device_id *id)
+static int tas5086_i2c_probe(struct i2c_client *i2c)
 {
        struct tas5086_private *priv;
        struct device *dev = &i2c->dev;
@@ -994,7 +993,7 @@ static struct i2c_driver tas5086_i2c_driver = {
                .of_match_table = of_match_ptr(tas5086_dt_ids),
        },
        .id_table       = tas5086_i2c_id,
-       .probe          = tas5086_i2c_probe,
+       .probe_new      = tas5086_i2c_probe,
        .remove         = tas5086_i2c_remove,
 };
 
index 59543d3..f06d2ad 100644 (file)
@@ -682,8 +682,7 @@ static const struct of_device_id tas6424_of_ids[] = {
 MODULE_DEVICE_TABLE(of, tas6424_of_ids);
 #endif
 
-static int tas6424_i2c_probe(struct i2c_client *client,
-                            const struct i2c_device_id *id)
+static int tas6424_i2c_probe(struct i2c_client *client)
 {
        struct device *dev = &client->dev;
        struct tas6424_data *tas6424;
@@ -805,7 +804,7 @@ static struct i2c_driver tas6424_i2c_driver = {
                .name = "tas6424",
                .of_match_table = of_match_ptr(tas6424_of_ids),
        },
-       .probe = tas6424_i2c_probe,
+       .probe_new = tas6424_i2c_probe,
        .remove = tas6424_i2c_remove,
        .id_table = tas6424_i2c_ids,
 };