We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4885f3 commit e347823Copy full SHA for e347823
drivers/regulator/tps6286x-regulator.c
@@ -111,8 +111,7 @@ static const struct of_device_id tps6286x_dt_ids[] = {
111
};
112
MODULE_DEVICE_TABLE(of, tps6286x_dt_ids);
113
114
-static int tps6286x_i2c_probe(struct i2c_client *i2c,
115
- const struct i2c_device_id *id)
+static int tps6286x_i2c_probe(struct i2c_client *i2c)
116
{
117
struct device *dev = &i2c->dev;
118
struct regulator_config config = {};
@@ -150,7 +149,7 @@ static struct i2c_driver tps6286x_regulator_driver = {
150
149
.name = "tps6286x",
151
.of_match_table = of_match_ptr(tps6286x_dt_ids),
152
},
153
- .probe = tps6286x_i2c_probe,
+ .probe_new = tps6286x_i2c_probe,
154
.id_table = tps6286x_i2c_id,
155
156
0 commit comments