Commit 1e1e667f authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones

leds: pca9532: Convert to i2c's .probe_new()

.probe_new() doesn't get the i2c_device_id * parameter, so determine
that explicitly in the probe function.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-285-uwe@kleine-koenig.org
parent c3dab3a9
...@@ -50,8 +50,7 @@ struct pca9532_data { ...@@ -50,8 +50,7 @@ struct pca9532_data {
u8 psc[2]; u8 psc[2];
}; };
static int pca9532_probe(struct i2c_client *client, static int pca9532_probe(struct i2c_client *client);
const struct i2c_device_id *id);
static void pca9532_remove(struct i2c_client *client); static void pca9532_remove(struct i2c_client *client);
enum { enum {
...@@ -103,7 +102,7 @@ static struct i2c_driver pca9532_driver = { ...@@ -103,7 +102,7 @@ static struct i2c_driver pca9532_driver = {
.name = "leds-pca953x", .name = "leds-pca953x",
.of_match_table = of_match_ptr(of_pca9532_leds_match), .of_match_table = of_match_ptr(of_pca9532_leds_match),
}, },
.probe = pca9532_probe, .probe_new = pca9532_probe,
.remove = pca9532_remove, .remove = pca9532_remove,
.id_table = pca9532_id, .id_table = pca9532_id,
}; };
...@@ -504,9 +503,9 @@ pca9532_of_populate_pdata(struct device *dev, struct device_node *np) ...@@ -504,9 +503,9 @@ pca9532_of_populate_pdata(struct device *dev, struct device_node *np)
return pdata; return pdata;
} }
static int pca9532_probe(struct i2c_client *client, static int pca9532_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
int devid; int devid;
struct pca9532_data *data = i2c_get_clientdata(client); struct pca9532_data *data = i2c_get_clientdata(client);
struct pca9532_platform_data *pca9532_pdata = struct pca9532_platform_data *pca9532_pdata =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment