u8                      regs[NUM_REGS];
 };
 
-static int ics932s401_probe(struct i2c_client *client,
-                        const struct i2c_device_id *id);
+static int ics932s401_probe(struct i2c_client *client);
 static int ics932s401_detect(struct i2c_client *client,
                          struct i2c_board_info *info);
 static void ics932s401_remove(struct i2c_client *client);
        .driver = {
                .name   = "ics932s401",
        },
-       .probe          = ics932s401_probe,
+       .probe_new      = ics932s401_probe,
        .remove         = ics932s401_remove,
        .id_table       = ics932s401_id,
        .detect         = ics932s401_detect,
        return 0;
 }
 
-static int ics932s401_probe(struct i2c_client *client,
-                        const struct i2c_device_id *id)
+static int ics932s401_probe(struct i2c_client *client)
 {
        struct ics932s401_data *data;
        int err;