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>
        .pad = &saa6752hs_pad_ops,
 };
 
-static int saa6752hs_probe(struct i2c_client *client,
-               const struct i2c_device_id *id)
+static int saa6752hs_probe(struct i2c_client *client)
 {
        struct saa6752hs_state *h;
        struct v4l2_subdev *sd;
        .driver = {
                .name   = "saa6752hs",
        },
-       .probe          = saa6752hs_probe,
+       .probe_new      = saa6752hs_probe,
        .remove         = saa6752hs_remove,
        .id_table       = saa6752hs_id,
 };