summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/pmbus/max20730.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/hwmon/pmbus/max20730.c b/drivers/hwmon/pmbus/max20730.c
index 95869d198ecf..fe03164788df 100644
--- a/drivers/hwmon/pmbus/max20730.c
+++ b/drivers/hwmon/pmbus/max20730.c
@@ -715,10 +715,7 @@ static int max20730_probe(struct i2c_client *client)
return -ENODEV;
}
- if (client->dev.of_node)
- chip_id = (uintptr_t)of_device_get_match_data(dev);
- else
- chip_id = i2c_match_id(max20730_id, client)->driver_data;
+ chip_id = (uintptr_t)i2c_get_match_data(client);
data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
if (!data)