From: Rob Herring Date: Fri, 13 Oct 2023 19:03:42 +0000 (-0500) Subject: EDAC/armada_xp: Explicitly include correct DT includes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9e08ac1b5e3bb7837aa23b67a97f08b80384e9d2;p=linux.git 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 Signed-off-by: Borislav Petkov (AMD) Reviewed-by: Jan Luebbe Link: https://lore.kernel.org/r/20231013190342.246973-1-robh@kernel.org --- diff --git a/drivers/edac/armada_xp_edac.c b/drivers/edac/armada_xp_edac.c index 5bcd34f23bafc..25517c99b3eac 100644 --- a/drivers/edac/armada_xp_edac.c +++ b/drivers/edac/armada_xp_edac.c @@ -5,7 +5,9 @@ #include #include -#include +#include +#include +#include #include #include