aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/mailbox/mailbox.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-07-14 11:47:01 -0600
committerJassi Brar <jaswinder.singh@linaro.org>2023-09-05 10:10:58 -0500
commite9803aac5097ac74186b074d3176318fd10ec98c (patch)
tree0d9fd1e7db0020a94a12841c3c7a612dc2a60201 /drivers/mailbox/mailbox.c
parentmailbox: ti-msgmgr: Use devm_platform_ioremap_resource_byname() (diff)
downloadwireguard-linux-e9803aac5097ac74186b074d3176318fd10ec98c.tar.xz
wireguard-linux-e9803aac5097ac74186b074d3176318fd10ec98c.zip
mailbox: 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> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox/mailbox.c')
-rw-r--r--drivers/mailbox/mailbox.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mailbox/mailbox.c b/drivers/mailbox/mailbox.c
index adf36c05fa43..ebff3baf3045 100644
--- a/drivers/mailbox/mailbox.c
+++ b/drivers/mailbox/mailbox.c
@@ -17,6 +17,7 @@
#include <linux/bitops.h>
#include <linux/mailbox_client.h>
#include <linux/mailbox_controller.h>
+#include <linux/of.h>
#include "mailbox.h"