diff options
author | Rob Herring <robh@kernel.org> | 2023-10-13 21:03:42 +0200 |
---|---|---|
committer | Borislav Petkov (AMD) <bp@alien8.de> | 2023-11-27 18:20:51 +0100 |
commit | 9e08ac1b5e3bb7837aa23b67a97f08b80384e9d2 (patch) | |
tree | 5513c0f50a3c3603ce8a31848eb500a02ec17fe9 /drivers/edac | |
parent | EDAC/pci_sysfs: Use PCI_HEADER_TYPE_MASK instead of literals (diff) | |
download | linux-9e08ac1b5e3bb7837aa23b67a97f08b80384e9d2.tar.xz linux-9e08ac1b5e3bb7837aa23b67a97f08b80384e9d2.zip |
EDAC/armada_xp: 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>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Reviewed-by: Jan Luebbe <jlu@pengutronix.de>
Link: https://lore.kernel.org/r/20231013190342.246973-1-robh@kernel.org
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/armada_xp_edac.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/edac/armada_xp_edac.c b/drivers/edac/armada_xp_edac.c index 5bcd34f23baf..25517c99b3ea 100644 --- a/drivers/edac/armada_xp_edac.c +++ b/drivers/edac/armada_xp_edac.c @@ -5,7 +5,9 @@ #include <linux/kernel.h> #include <linux/edac.h> -#include <linux/of_platform.h> +#include <linux/of.h> +#include <linux/of_device.h> +#include <linux/platform_device.h> #include <asm/hardware/cache-l2x0.h> #include <asm/hardware/cache-aurora-l2.h> |