]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
soc: bcm: Explicitly include correct DT includes
authorRob Herring <robh@kernel.org>
Wed, 26 Jul 2023 23:31:29 +0000 (17:31 -0600)
committerFlorian Fainelli <florian.fainelli@broadcom.com>
Fri, 28 Jul 2023 17:33:48 +0000 (10:33 -0700)
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.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230726233130.3811017-1-robh@kernel.org
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
drivers/soc/bcm/bcm63xx/bcm-pmb.c
drivers/soc/bcm/bcm63xx/bcm63xx-power.c
drivers/soc/bcm/raspberrypi-power.c

index 9407cac47fdbecf52fe7315fdd602538961fa3ee..a72ba26ecf9d60782ceed2f594dbd459b90746d3 100644 (file)
@@ -8,7 +8,6 @@
 #include <linux/io.h>
 #include <linux/module.h>
 #include <linux/of.h>
-#include <linux/of_device.h>
 #include <linux/platform_device.h>
 #include <linux/pm_domain.h>
 #include <linux/reset/bcm63xx_pmb.h>
index aa72e13d5d0e005781d557a5ba9eb45b8feb6afc..98b0c2430dbc6bdc2cf14fa757178af1213e66bf 100644 (file)
@@ -14,7 +14,6 @@
 #include <linux/platform_device.h>
 #include <linux/pm_domain.h>
 #include <linux/of.h>
-#include <linux/of_device.h>
 
 struct bcm63xx_power_dev {
        struct generic_pm_domain genpd;
index 58175af982a0dc836c07a1fc229508095967c90b..06196ebfe03b03aba86b4e42f61f09950bbf1f6c 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 #include <linux/module.h>
-#include <linux/of_platform.h>
+#include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/pm_domain.h>
 #include <dt-bindings/power/raspberrypi-power.h>