Input: silead - 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> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20221118224540.619276-258-uwe@kleine-koenig.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
committed by
Dmitry Torokhov
parent
62ba881ad9
commit
09a77dc4d4
@@ -652,9 +652,9 @@ static void silead_disable_regulator(void *arg)
|
||||
regulator_bulk_disable(ARRAY_SIZE(data->regulators), data->regulators);
|
||||
}
|
||||
|
||||
static int silead_ts_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int silead_ts_probe(struct i2c_client *client)
|
||||
{
|
||||
const struct i2c_device_id *id = i2c_client_get_device_id(client);
|
||||
struct silead_ts_data *data;
|
||||
struct device *dev = &client->dev;
|
||||
int error;
|
||||
@@ -826,7 +826,7 @@ MODULE_DEVICE_TABLE(of, silead_ts_of_match);
|
||||
#endif
|
||||
|
||||
static struct i2c_driver silead_ts_driver = {
|
||||
.probe = silead_ts_probe,
|
||||
.probe_new = silead_ts_probe,
|
||||
.id_table = silead_ts_id,
|
||||
.driver = {
|
||||
.name = SILEAD_TS_NAME,
|
||||
|
||||
Reference in New Issue
Block a user