MIPS: More explicit DT include clean-ups
authorRob Herring <robh@kernel.org>
Thu, 27 Jul 2023 01:20:39 +0000 (19:20 -0600)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Fri, 28 Jul 2023 09:41:18 +0000 (11:41 +0200)
A couple more clean-ups in the MIPS code.

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>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/cavium-octeon/octeon-platform.c
arch/mips/cavium-octeon/octeon-usb.c
arch/mips/ralink/ill_acc.c

index ce05c0dd3acd780493148d17f7a2ede59f7ff482..60da1b2091f5e05592935b8bf639d5b3fbb9eb9a 100644 (file)
@@ -8,8 +8,10 @@
  */
 
 #include <linux/etherdevice.h>
+#include <linux/of.h>
 #include <linux/of_platform.h>
 #include <linux/of_fdt.h>
+#include <linux/platform_device.h>
 #include <linux/libfdt.h>
 
 #include <asm/octeon/octeon.h>
index 2add435ad03872f0b1465fcc9e88d13711b5c4e9..add0f23592b303c0784fc3361a88a428e5380055 100644 (file)
@@ -15,7 +15,9 @@
 #include <linux/io.h>
 #include <linux/module.h>
 #include <linux/mutex.h>
+#include <linux/of.h>
 #include <linux/of_platform.h>
+#include <linux/platform_device.h>
 
 /*
  * USB Control Register
index f395ae218470f9dc8d8e0316b3561ab1f7bbea5e..25341b2319d0fa3739cd846d7052e279a5acad44 100644 (file)
@@ -5,8 +5,10 @@
  */
 
 #include <linux/interrupt.h>
+#include <linux/of.h>
 #include <linux/of_platform.h>
 #include <linux/of_irq.h>
+#include <linux/platform_device.h>
 
 #include <asm/mach-ralink/ralink_regs.h>