macintosh/windfarm_lm75_sensor: Convert to i2c's .probe_new()
.probe_new() doesn't get the i2c_device_id * parameter, so determine that explicitly in the probe function. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20221118224540.619276-295-uwe@kleine-koenig.org
This commit is contained in:
committed by
Michael Ellerman
parent
472e4c61d2
commit
51a9e1755c
@ -87,9 +87,9 @@ static const struct wf_sensor_ops wf_lm75_ops = {
|
|||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int wf_lm75_probe(struct i2c_client *client,
|
static int wf_lm75_probe(struct i2c_client *client)
|
||||||
const struct i2c_device_id *id)
|
{
|
||||||
{
|
const struct i2c_device_id *id = i2c_client_get_device_id(client);
|
||||||
struct wf_lm75_sensor *lm;
|
struct wf_lm75_sensor *lm;
|
||||||
int rc, ds1775;
|
int rc, ds1775;
|
||||||
const char *name, *loc;
|
const char *name, *loc;
|
||||||
@ -177,7 +177,7 @@ static struct i2c_driver wf_lm75_driver = {
|
|||||||
.name = "wf_lm75",
|
.name = "wf_lm75",
|
||||||
.of_match_table = wf_lm75_of_id,
|
.of_match_table = wf_lm75_of_id,
|
||||||
},
|
},
|
||||||
.probe = wf_lm75_probe,
|
.probe_new = wf_lm75_probe,
|
||||||
.remove = wf_lm75_remove,
|
.remove = wf_lm75_remove,
|
||||||
.id_table = wf_lm75_id,
|
.id_table = wf_lm75_id,
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user