aboutsummaryrefslogtreecommitdiff
path: root/drivers/memory/samsung
diff options
context:
space:
mode:
authorGravatar Rob Herring <robh@kernel.org> 2023-07-14 11:47:16 -0600
committerGravatar Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> 2023-07-25 22:09:37 +0200
commit0b4838717fff5e24d97742e79ba1ee46cbfbf4b6 (patch)
tree037f57bd68698663b8b474eecdc07c6e501e19b7 /drivers/memory/samsung
parentmemory: tegra: Prefer octal over symbolic permissions (diff)
downloadlinux-0b4838717fff5e24d97742e79ba1ee46cbfbf4b6.tar.gz
linux-0b4838717fff5e24d97742e79ba1ee46cbfbf4b6.tar.bz2
linux-0b4838717fff5e24d97742e79ba1ee46cbfbf4b6.zip
memory: 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/20230714174717.4059518-1-robh@kernel.org Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Diffstat (limited to 'drivers/memory/samsung')
-rw-r--r--drivers/memory/samsung/exynos5422-dmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/memory/samsung/exynos5422-dmc.c b/drivers/memory/samsung/exynos5422-dmc.c
index c491cd549644..6d019dbd721c 100644
--- a/drivers/memory/samsung/exynos5422-dmc.c
+++ b/drivers/memory/samsung/exynos5422-dmc.c
@@ -13,7 +13,7 @@
#include <linux/mfd/syscon.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
-#include <linux/of_device.h>
+#include <linux/of.h>
#include <linux/pm_opp.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>