From: Uwe Kleine-König Date: Fri, 18 Nov 2022 22:42:23 +0000 (+0100) Subject: media: tuners/tda18250: Convert to i2c's .probe_new() X-Git-Tag: v6.2-rc1~125^2~158^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=14b9e482d1a03e4aa873554e651dee8e72631053;p=thirdparty%2Fkernel%2Flinux.git media: tuners/tda18250: 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 Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/tuners/tda18250.c b/drivers/media/tuners/tda18250.c index e404a5afad4c9..66ff2d035de70 100644 --- a/drivers/media/tuners/tda18250.c +++ b/drivers/media/tuners/tda18250.c @@ -741,8 +741,7 @@ static const struct dvb_tuner_ops tda18250_ops = { .sleep = tda18250_sleep, }; -static int tda18250_probe(struct i2c_client *client, - const struct i2c_device_id *id) +static int tda18250_probe(struct i2c_client *client) { struct tda18250_config *cfg = client->dev.platform_data; struct dvb_frontend *fe = cfg->fe; @@ -878,7 +877,7 @@ static struct i2c_driver tda18250_driver = { .driver = { .name = "tda18250", }, - .probe = tda18250_probe, + .probe_new = tda18250_probe, .remove = tda18250_remove, .id_table = tda18250_id_table, };