u8 psc[2];
 };
 
-static int pca9532_probe(struct i2c_client *client,
-       const struct i2c_device_id *id);
+static int pca9532_probe(struct i2c_client *client);
 static void pca9532_remove(struct i2c_client *client);
 
 enum {
                .name = "leds-pca953x",
                .of_match_table = of_match_ptr(of_pca9532_leds_match),
        },
-       .probe = pca9532_probe,
+       .probe_new = pca9532_probe,
        .remove = pca9532_remove,
        .id_table = pca9532_id,
 };
        return pdata;
 }
 
-static int pca9532_probe(struct i2c_client *client,
-       const struct i2c_device_id *id)
+static int pca9532_probe(struct i2c_client *client)
 {
+       const struct i2c_device_id *id = i2c_client_get_device_id(client);
        int devid;
        struct pca9532_data *data = i2c_get_clientdata(client);
        struct pca9532_platform_data *pca9532_pdata =