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>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
        .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;
        .driver = {
                .name   = "tda18250",
        },
-       .probe          = tda18250_probe,
+       .probe_new      = tda18250_probe,
        .remove         = tda18250_remove,
        .id_table       = tda18250_id_table,
 };