diff options
author | Rob Herring <robh@kernel.org> | 2023-07-24 23:18:40 +0200 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2023-07-28 08:49:52 +0200 |
commit | 07382e6b68a742f18d57a27fec5fd0c2b0b61b40 (patch) | |
tree | 18f95d96d36ddc8d8a24a2f4c7c18ee11521ed70 /drivers/net/can/ti_hecc.c | |
parent | Merge patch series "Add support for Allwinner D1 CAN controllers" (diff) | |
download | linux-07382e6b68a742f18d57a27fec5fd0c2b0b61b40.tar.xz linux-07382e6b68a742f18d57a27fec5fd0c2b0b61b40.zip |
can: Explicitly include correct DT includes, part 2
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.
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/all/20230724211841.805053-1-robh@kernel.org
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'drivers/net/can/ti_hecc.c')
-rw-r--r-- | drivers/net/can/ti_hecc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c index 54284661992e..a8243acde92d 100644 --- a/drivers/net/can/ti_hecc.c +++ b/drivers/net/can/ti_hecc.c @@ -21,7 +21,6 @@ #include <linux/clk.h> #include <linux/io.h> #include <linux/of.h> -#include <linux/of_device.h> #include <linux/regulator/consumer.h> #include <linux/can/dev.h> |