]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
genpd: Explicitly include correct DT includes
authorRob Herring <robh@kernel.org>
Wed, 23 Aug 2023 17:04:37 +0000 (12:04 -0500)
committerUlf Hansson <ulf.hansson@linaro.org>
Thu, 24 Aug 2023 09:10:42 +0000 (11:10 +0200)
The DT of_device.h and of_platform.h date back to the separate
of_platform_bus_type before it was merged into the regular platform bus.
As part of that merge prepping Arm DT support 13 years ago, they
"temporarily" include each other. They also include platform_device.h
and of.h. As a result, there's a pretty much random mix of those include
files used throughout the tree. In order to detangle these headers and
replace the implicit includes with struct declarations, users need to
explicitly include the correct includes.

Signed-off-by: Rob Herring <robh@kernel.org>
Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/genpd/mediatek/mtk-pm-domains.c
drivers/genpd/mediatek/mtk-scpsys.c
drivers/genpd/sunxi/sun20i-ppu.c

index 354249cc1b12d684056511d3143df53c624ade65..ee962804b830316d011b1a998cbe08df793679c2 100644 (file)
@@ -8,8 +8,8 @@
 #include <linux/io.h>
 #include <linux/iopoll.h>
 #include <linux/mfd/syscon.h>
+#include <linux/of.h>
 #include <linux/of_clk.h>
-#include <linux/of_device.h>
 #include <linux/platform_device.h>
 #include <linux/pm_domain.h>
 #include <linux/regmap.h>
index 7a668888111c24a6c993d0c8026fff27101e3cbd..b374d01fdac714fd323965b96537dd5edcb21c0b 100644 (file)
@@ -7,7 +7,7 @@
 #include <linux/io.h>
 #include <linux/iopoll.h>
 #include <linux/mfd/syscon.h>
-#include <linux/of_device.h>
+#include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/pm_domain.h>
 #include <linux/regulator/consumer.h>
index 98cb41d365606fb0c47299e88087e07e763b5c51..8700f9dd5f75b8bee3661b83b656bf1fdb8cb994 100644 (file)
@@ -5,7 +5,7 @@
 #include <linux/io.h>
 #include <linux/iopoll.h>
 #include <linux/module.h>
-#include <linux/of_device.h>
+#include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/pm_domain.h>
 #include <linux/reset.h>