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>
Tested-by: Akihiro Tsukada <tskd08@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
 };
 
 
-static int mxl301rf_probe(struct i2c_client *client,
-                         const struct i2c_device_id *id)
+static int mxl301rf_probe(struct i2c_client *client)
 {
        struct mxl301rf_state *state;
        struct mxl301rf_config *cfg;
        .driver = {
                .name   = "mxl301rf",
        },
-       .probe          = mxl301rf_probe,
+       .probe_new      = mxl301rf_probe,
        .remove         = mxl301rf_remove,
        .id_table       = mxl301rf_id,
 };