]> git.dujemihanovic.xyz Git - linux.git/commitdiff
power: supply: generic-adc-battery: add DT support
authorSebastian Reichel <sre@kernel.org>
Fri, 17 Mar 2023 22:57:04 +0000 (23:57 +0100)
committerSebastian Reichel <sre@kernel.org>
Wed, 29 Mar 2023 20:38:57 +0000 (22:38 +0200)
This adds full DT support to the driver. Because of the previous
changes just adding a compatible value is enough.

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Matti Vaittinen <mazziesaccount@gmail.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/supply/generic-adc-battery.c

index 0124d8d51af7e7a10dc59807bf0b46441f57bf4b..e11ad43ab968159e8f564d51e87e7df1db8467b3 100644 (file)
@@ -22,6 +22,7 @@
 #include <linux/slab.h>
 #include <linux/iio/consumer.h>
 #include <linux/iio/types.h>
+#include <linux/of.h>
 #include <linux/devm-helpers.h>
 
 #define JITTER_DEFAULT 10 /* hope 10ms is enough */
@@ -175,6 +176,7 @@ static int gab_probe(struct platform_device *pdev)
        if (!adc_bat)
                return -ENOMEM;
 
+       psy_cfg.of_node = pdev->dev.of_node;
        psy_cfg.drv_data = adc_bat;
        psy_desc = &adc_bat->psy_desc;
        psy_desc->name = dev_name(&pdev->dev);
@@ -288,10 +290,17 @@ static int __maybe_unused gab_resume(struct device *dev)
 
 static SIMPLE_DEV_PM_OPS(gab_pm_ops, gab_suspend, gab_resume);
 
+static const struct of_device_id gab_match[] = {
+       { .compatible = "adc-battery" },
+       { }
+};
+MODULE_DEVICE_TABLE(of, gab_match);
+
 static struct platform_driver gab_driver = {
        .driver         = {
                .name   = "generic-adc-battery",
                .pm     = &gab_pm_ops,
+               .of_match_table = gab_match,
        },
        .probe          = gab_probe,
 };