regulator: da9121: Use i2c_get_match_data()
authorRob Herring <robh@kernel.org>
Tue, 17 Oct 2023 20:34:28 +0000 (15:34 -0500)
committerMark Brown <broonie@kernel.org>
Tue, 17 Oct 2023 20:38:47 +0000 (21:38 +0100)
Use preferred i2c_get_match_data() instead of of_match_device() to get
the driver match data. With this, adjust the includes to explicitly
include the correct headers.

Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20231017203429.2699039-1-robh@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/da9121-regulator.c

index 80098035bb13a4dcd2dc89e521ce9bf0049afbc2..b551a400bdd1ff12676bb941b5186a3152724139 100644 (file)
@@ -13,7 +13,7 @@
 //
 // Copyright (C) 2020 Dialog Semiconductor
 
-#include <linux/of_device.h>
+#include <linux/of.h>
 #include <linux/of_gpio.h>
 #include <linux/gpio/consumer.h>
 #include <linux/regulator/of_regulator.h>
@@ -1117,17 +1117,6 @@ static const struct of_device_id da9121_dt_ids[] = {
 };
 MODULE_DEVICE_TABLE(of, da9121_dt_ids);
 
-static inline int da9121_of_get_id(struct device *dev)
-{
-       const struct of_device_id *id = of_match_device(da9121_dt_ids, dev);
-
-       if (!id) {
-               dev_err(dev, "%s: Failed\n", __func__);
-               return -EINVAL;
-       }
-       return (uintptr_t)id->data;
-}
-
 static int da9121_i2c_probe(struct i2c_client *i2c)
 {
        struct da9121 *chip;
@@ -1141,7 +1130,7 @@ static int da9121_i2c_probe(struct i2c_client *i2c)
        }
 
        chip->pdata = i2c->dev.platform_data;
-       chip->subvariant_id = da9121_of_get_id(&i2c->dev);
+       chip->subvariant_id = (enum da9121_subvariant)i2c_get_match_data(i2c);
 
        ret = da9121_assign_chip_model(i2c, chip);
        if (ret < 0)