diff options
author | Biju Das <biju.das.jz@bp.renesas.com> | 2023-09-23 18:49:27 +0100 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-11-01 10:02:12 +0000 |
commit | bffa42885f3bbddce56e17e619e083f041812f8a (patch) | |
tree | e5f6ab8122b48e3b12e8ba000ed42ecdbff8939f /drivers/mfd | |
parent | f1f23a1a79512a22f9153e9b6d1c98a2b4ab300f (diff) |
mfd: max77541: Simplify obtaining I2C match data
Simplify probe() by replacing device_get_match_data() and ID lookup for
retrieving match data by i2c_get_match_data().
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20230923174928.56824-4-biju.das.jz@bp.renesas.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/max77541.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/mfd/max77541.c b/drivers/mfd/max77541.c index 10c2e274b4af..d77c31c86e43 100644 --- a/drivers/mfd/max77541.c +++ b/drivers/mfd/max77541.c @@ -162,7 +162,6 @@ static int max77541_pmic_setup(struct device *dev) static int max77541_probe(struct i2c_client *client) { - const struct i2c_device_id *id = i2c_client_get_device_id(client); struct device *dev = &client->dev; struct max77541 *max77541; @@ -173,10 +172,7 @@ static int max77541_probe(struct i2c_client *client) i2c_set_clientdata(client, max77541); max77541->i2c = client; - max77541->id = (uintptr_t)device_get_match_data(dev); - if (!max77541->id) - max77541->id = (enum max7754x_ids)id->driver_data; - + max77541->id = (uintptr_t)i2c_get_match_data(client); if (!max77541->id) return -EINVAL; |