diff options
author | Fabio Estevam <festevam@gmail.com> | 2020-09-02 15:49:49 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2020-09-05 10:34:23 +0300 |
commit | 879c0e5e0ac711603b89b711c7b54213c0c17147 (patch) | |
tree | 1c8b7296e28852dd1b366ea6254c7108bcc98a1e /arch/arm/mach-imx/imx27-dt.c | |
parent | 4b563a066611f4b137ea28533b9783a492cb1e12 (diff) | |
download | linux-879c0e5e0ac711603b89b711c7b54213c0c17147.tar.xz |
ARM: imx: Remove i.MX27 board files
i.MX27 has basic device tree support.
To achieve the goal of converting all i.MX SoCs to a
devicetree-only platform, remove imx27 board files.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-imx/imx27-dt.c')
-rw-r--r-- | arch/arm/mach-imx/imx27-dt.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/arm/mach-imx/imx27-dt.c b/arch/arm/mach-imx/imx27-dt.c deleted file mode 100644 index 29d97bd64381..000000000000 --- a/arch/arm/mach-imx/imx27-dt.c +++ /dev/null @@ -1,26 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0-or-later -/* - * Copyright 2012 Sascha Hauer, Pengutronix - */ - -#include <linux/irq.h> -#include <linux/of_irq.h> -#include <linux/of_platform.h> -#include <asm/mach/arch.h> -#include <asm/mach/time.h> - -#include "common.h" -#include "mx27.h" - -static const char * const imx27_dt_board_compat[] __initconst = { - "fsl,imx27", - NULL -}; - -DT_MACHINE_START(IMX27_DT, "Freescale i.MX27 (Device Tree Support)") - .map_io = mx27_map_io, - .init_early = imx27_init_early, - .init_irq = mx27_init_irq, - .init_late = imx27_pm_init, - .dt_compat = imx27_dt_board_compat, -MACHINE_END |