diff options
author | Rob Herring <robh@kernel.org> | 2023-07-18 00:56:09 +0200 |
---|---|---|
committer | Nishanth Menon <nm@ti.com> | 2023-07-25 13:27:25 +0200 |
commit | 630c191b3396c6aaccab1234f8834848a2c42e8a (patch) | |
tree | 491f8eef9a6c0fa3f933708018134d66ea2a805e /arch/arm/mach-keystone | |
parent | Linux 6.5-rc1 (diff) | |
download | linux-630c191b3396c6aaccab1234f8834848a2c42e8a.tar.xz linux-630c191b3396c6aaccab1234f8834848a2c42e8a.zip |
ARM: keystone: Drop unused includes
Several includes are not needed, so drop them.
of_platform.h is not needed, but it implicitly includes platform_device.h
(for now) which is needed.
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230717225610.3214029-1-robh@kernel.org
Signed-off-by: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'arch/arm/mach-keystone')
-rw-r--r-- | arch/arm/mach-keystone/keystone.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/mach-keystone/keystone.c b/arch/arm/mach-keystone/keystone.c index 68039aad3014..e0ca26182e0b 100644 --- a/arch/arm/mach-keystone/keystone.c +++ b/arch/arm/mach-keystone/keystone.c @@ -7,12 +7,10 @@ * Santosh Shilimkar <santosh.shillimkar@ti.com> */ #include <linux/io.h> -#include <linux/of.h> #include <linux/dma-map-ops.h> #include <linux/init.h> -#include <linux/of_platform.h> -#include <linux/of_address.h> #include <linux/memblock.h> +#include <linux/platform_device.h> #include <asm/setup.h> #include <asm/mach/map.h> |