summaryrefslogtreecommitdiff
path: root/drivers/input/misc/mma8450.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-07-17 19:03:47 +0300
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2023-07-17 20:03:07 +0300
commitdbce1a7d5dce7318d8465b1e0d052ef1d2202237 (patch)
treef35d29b50cfd62aeeb4a687057db0ac1d5936d86 /drivers/input/misc/mma8450.c
parent50501936288d6a29d7ef78f25d00e33240fad45f (diff)
downloadlinux-dbce1a7d5dce7318d8465b1e0d052ef1d2202237.tar.xz
Input: 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/20230714174633.4058096-1-robh@kernel.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/misc/mma8450.c')
-rw-r--r--drivers/input/misc/mma8450.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/mma8450.c b/drivers/input/misc/mma8450.c
index 76a190b2220b..662b436d765b 100644
--- a/drivers/input/misc/mma8450.c
+++ b/drivers/input/misc/mma8450.c
@@ -11,7 +11,7 @@
#include <linux/delay.h>
#include <linux/i2c.h>
#include <linux/input.h>
-#include <linux/of_device.h>
+#include <linux/mod_devicetable.h>
#define MMA8450_DRV_NAME "mma8450"