diff options
author | Rob Herring <robh@kernel.org> | 2023-07-18 16:31:01 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-08-04 15:39:04 +0200 |
commit | d9c58aeb408100647b624e1244aec7b871e859b1 (patch) | |
tree | e70877213a10e5b8e2482d4ebe3839156bc297dd /drivers/misc/xilinx_tmr_manager.c | |
parent | misc: tps6594-esm: Convert to platform remove callback returning void (diff) | |
download | linux-d9c58aeb408100647b624e1244aec7b871e859b1.tar.xz linux-d9c58aeb408100647b624e1244aec7b871e859b1.zip |
misc: 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 as 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.
Acked-by: Andrew Donnellan <ajd@linux.ibm.com> # cxl
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230718143102.1065481-1-robh@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/xilinx_tmr_manager.c')
-rw-r--r-- | drivers/misc/xilinx_tmr_manager.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/xilinx_tmr_manager.c b/drivers/misc/xilinx_tmr_manager.c index 2e7a5f37a01f..03912a90fd95 100644 --- a/drivers/misc/xilinx_tmr_manager.c +++ b/drivers/misc/xilinx_tmr_manager.c @@ -15,7 +15,8 @@ #include <asm/xilinx_mb_manager.h> #include <linux/module.h> -#include <linux/of_device.h> +#include <linux/of.h> +#include <linux/platform_device.h> /* TMR Manager Register offsets */ #define XTMR_MANAGER_CR_OFFSET 0x0 |