aboutsummaryrefslogtreecommitdiff
path: root/drivers/mfd/rt5033.c
diff options
context:
space:
mode:
authorGravatar Rob Herring <robh@kernel.org> 2023-07-14 11:47:27 -0600
committerGravatar Lee Jones <lee@kernel.org> 2023-08-18 21:48:03 +0100
commitdc0c386e09a701e3c7c2dd58799cee992fa4e4b6 (patch)
treeba1ce362c214f40f01ac38f963a3d2e40ac976fd /drivers/mfd/rt5033.c
parentmfd: wm8998: Update to use maple tree register cache (diff)
downloadlinux-dc0c386e09a701e3c7c2dd58799cee992fa4e4b6.tar.gz
linux-dc0c386e09a701e3c7c2dd58799cee992fa4e4b6.tar.bz2
linux-dc0c386e09a701e3c7c2dd58799cee992fa4e4b6.zip
mfd: 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/20230714174731.4059811-1-robh@kernel.org Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd/rt5033.c')
-rw-r--r--drivers/mfd/rt5033.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/rt5033.c b/drivers/mfd/rt5033.c
index 67b0a228db24..7e23ab3d5842 100644
--- a/drivers/mfd/rt5033.c
+++ b/drivers/mfd/rt5033.c
@@ -10,9 +10,9 @@
*/
#include <linux/err.h>
+#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/interrupt.h>
-#include <linux/of_device.h>
#include <linux/mfd/core.h>
#include <linux/mfd/rt5033.h>
#include <linux/mfd/rt5033-private.h>