summaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-mt7621.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-07-14 11:49:52 -0600
committerMark Brown <broonie@kernel.org>2023-07-14 20:53:00 +0100
commit749396cb29a7d82cb5e324bf61be3fc948d97141 (patch)
tree79d3f2a21e0d3c32e973b34bc6c7041d0f40a407 /drivers/spi/spi-mt7621.c
parent75e308ffc4f0d36b895f1110ece8b77d4116fdb1 (diff)
downloadlinux-749396cb29a7d82cb5e324bf61be3fc948d97141.tar.gz
linux-749396cb29a7d82cb5e324bf61be3fc948d97141.tar.bz2
linux-749396cb29a7d82cb5e324bf61be3fc948d97141.zip
spi: 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. Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230714174955.4064174-1-robh@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-mt7621.c')
-rw-r--r--drivers/spi/spi-mt7621.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/spi/spi-mt7621.c b/drivers/spi/spi-mt7621.c
index 3e9d396b33bd..91600e5c22e4 100644
--- a/drivers/spi/spi-mt7621.c
+++ b/drivers/spi/spi-mt7621.c
@@ -14,7 +14,9 @@
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/module.h>
+#include <linux/of.h>
#include <linux/of_device.h>
+#include <linux/platform_device.h>
#include <linux/reset.h>
#include <linux/spi/spi.h>