mfd: rc5t583: Convert to i2c's .probe_new()
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: Lee Jones <lee@kernel.org> Link: https://lore.kernel.org/r/20221118224540.619276-452-uwe@kleine-koenig.org
This commit is contained in:
parent
659ea73211
commit
913c4a3e19
@ -233,8 +233,7 @@ static const struct regmap_config rc5t583_regmap_config = {
|
||||
.cache_type = REGCACHE_RBTREE,
|
||||
};
|
||||
|
||||
static int rc5t583_i2c_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
static int rc5t583_i2c_probe(struct i2c_client *i2c)
|
||||
{
|
||||
struct rc5t583 *rc5t583;
|
||||
struct rc5t583_platform_data *pdata = dev_get_platdata(&i2c->dev);
|
||||
@ -289,7 +288,7 @@ static struct i2c_driver rc5t583_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "rc5t583",
|
||||
},
|
||||
.probe = rc5t583_i2c_probe,
|
||||
.probe_new = rc5t583_i2c_probe,
|
||||
.id_table = rc5t583_i2c_id,
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user