Input: elan_i2c_core - Convert to i2c's .probe_new()
The probe function doesn't make use of the i2c_device_id * parameter so it can be trivially converted. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20221118224540.619276-222-uwe@kleine-koenig.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
cc6490c640
commit
fbe2715cbc
|
@ -1187,8 +1187,7 @@ static void elan_disable_regulator(void *_data)
|
||||||
regulator_disable(data->vcc);
|
regulator_disable(data->vcc);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int elan_probe(struct i2c_client *client,
|
static int elan_probe(struct i2c_client *client)
|
||||||
const struct i2c_device_id *dev_id)
|
|
||||||
{
|
{
|
||||||
const struct elan_transport_ops *transport_ops;
|
const struct elan_transport_ops *transport_ops;
|
||||||
struct device *dev = &client->dev;
|
struct device *dev = &client->dev;
|
||||||
|
@ -1425,7 +1424,7 @@ static struct i2c_driver elan_driver = {
|
||||||
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
||||||
.dev_groups = elan_sysfs_groups,
|
.dev_groups = elan_sysfs_groups,
|
||||||
},
|
},
|
||||||
.probe = elan_probe,
|
.probe_new = elan_probe,
|
||||||
.id_table = elan_id,
|
.id_table = elan_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue