diff options
author | Axel Lin <axel.lin@ingics.com> | 2020-01-14 13:44:49 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-01-14 16:25:00 +0100 |
commit | 5b379b2bf87710834ed90d367acb58e652e624af (patch) | |
tree | f45ef0931be56605e6f37e658d212d7b0186009f /drivers/regulator/mpq7920.c | |
parent | regulator: mpq7920: Remove unneeded fields from struct mpq7920_regulator_info (diff) | |
download | linux-5b379b2bf87710834ed90d367acb58e652e624af.tar.xz linux-5b379b2bf87710834ed90d367acb58e652e624af.zip |
regulator: mpq7920: Convert to use .probe_new
Use the new .probe_new instead.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Link: https://lore.kernel.org/r/20200114124449.28408-2-axel.lin@ingics.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/mpq7920.c')
-rw-r--r-- | drivers/regulator/mpq7920.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/regulator/mpq7920.c b/drivers/regulator/mpq7920.c index b133bab514a9..54c862edf571 100644 --- a/drivers/regulator/mpq7920.c +++ b/drivers/regulator/mpq7920.c @@ -260,8 +260,7 @@ static void mpq7920_parse_dt(struct device *dev, of_node_put(np); } -static int mpq7920_i2c_probe(struct i2c_client *client, - const struct i2c_device_id *id) +static int mpq7920_i2c_probe(struct i2c_client *client) { struct device *dev = &client->dev; struct mpq7920_regulator_info *info; @@ -321,7 +320,7 @@ static struct i2c_driver mpq7920_regulator_driver = { .name = "mpq7920", .of_match_table = of_match_ptr(mpq7920_of_match), }, - .probe = mpq7920_i2c_probe, + .probe_new = mpq7920_i2c_probe, .id_table = mpq7920_id, }; module_i2c_driver(mpq7920_regulator_driver); |