of: Stop circularly including of_device.h and of_platform.h
authorRob Herring <robh@kernel.org>
Fri, 15 Jan 2021 21:24:59 +0000 (15:24 -0600)
committerRob Herring <robh@kernel.org>
Fri, 19 Jan 2024 14:17:28 +0000 (08:17 -0600)
The DT of_device.h and of_platform.h headers 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. The headers also include
platform_device.h and of.h. The result was lots of drivers relied on
these implicit includes.

Now the entire tree has been fixed over the last couple of cycles to
explicitly include the necessary headers instead of relying on
of_device.h and/or of_platform.h implicit includes, so the implicit and
circular includes can finally be removed.

Signed-off-by: Rob Herring <robh@kernel.org>
include/linux/of_device.h
include/linux/of_platform.h

index a72661e47faa56a6c316dcd387153275e0990626..9042bca5bb848c5fd4239565aaac679fc951e754 100644 (file)
@@ -2,10 +2,7 @@
 #ifndef _LINUX_OF_DEVICE_H
 #define _LINUX_OF_DEVICE_H
 
-#include <linux/platform_device.h>
-#include <linux/of_platform.h> /* temporary until merge */
-
-#include <linux/of.h>
+#include <linux/device/driver.h>
 
 struct device;
 struct of_device_id;
index fadfea5754852df256da1f77461f1d119a3bf418..a2ff1ad48f7f0c19f1e3403a9d2deb8ac860cb85 100644 (file)
@@ -7,11 +7,11 @@
  */
 
 #include <linux/mod_devicetable.h>
-#include <linux/of_device.h>
-#include <linux/platform_device.h>
 
 struct device;
+struct device_node;
 struct of_device_id;
+struct platform_device;
 
 /**
  * struct of_dev_auxdata - lookup table entry for device names & platform_data