Skip to content

Commit bb54e66

Browse files
robherringmichalsimek
authored andcommitted
ARM: zynq: Explicitly include correct DT includes
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> Link: https://lore.kernel.org/r/20230717225358.3210536-1-robh@kernel.org Signed-off-by: Michal Simek <michal.simek@amd.com>
1 parent 06c2afb commit bb54e66

File tree

1 file changed

+1
-1
lines changed
  • arch/arm/mach-zynq

1 file changed

+1
-1
lines changed

arch/arm/mach-zynq/pm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
*/
99

1010
#include <linux/io.h>
11+
#include <linux/of.h>
1112
#include <linux/of_address.h>
12-
#include <linux/of_device.h>
1313
#include "common.h"
1414

1515
/* register offsets */

0 commit comments

Comments
 (0)