power: supply: ab8500: add missing MODULE_DEVICE_TABLE
authorZou Wei <zou_wei@huawei.com>
Sat, 5 Jun 2021 01:21:41 +0000 (09:21 +0800)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Tue, 29 Jun 2021 22:00:01 +0000 (00:00 +0200)
This patch adds missing MODULE_DEVICE_TABLE definition which generates
correct modalias for automatic loading of this driver when it is built
as an external module.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/ab8500_btemp.c
drivers/power/supply/ab8500_charger.c
drivers/power/supply/ab8500_fg.c

index 5b664d2..dbdcff3 100644 (file)
@@ -1097,6 +1097,7 @@ static const struct of_device_id ab8500_btemp_match[] = {
        { .compatible = "stericsson,ab8500-btemp", },
        { },
 };
+MODULE_DEVICE_TABLE(of, ab8500_btemp_match);
 
 struct platform_driver ab8500_btemp_driver = {
        .probe = ab8500_btemp_probe,
index 4a6bc43..fa49e12 100644 (file)
@@ -3705,6 +3705,7 @@ static const struct of_device_id ab8500_charger_match[] = {
        { .compatible = "stericsson,ab8500-charger", },
        { },
 };
+MODULE_DEVICE_TABLE(of, ab8500_charger_match);
 
 static struct platform_driver ab8500_charger_driver = {
        .probe = ab8500_charger_probe,
index 4da8992..3d45ed0 100644 (file)
@@ -3212,6 +3212,7 @@ static const struct of_device_id ab8500_fg_match[] = {
        { .compatible = "stericsson,ab8500-fg", },
        { },
 };
+MODULE_DEVICE_TABLE(of, ab8500_fg_match);
 
 struct platform_driver ab8500_fg_driver = {
        .probe = ab8500_fg_probe,