diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2021-01-15 16:51:24 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2021-01-15 17:42:10 +0100 |
commit | cc6111375cec44890218e5be654884f8b7bfc566 (patch) | |
tree | 098cb53053b58b96b931d1ef987bbdde7d11254d /arch/arm/mach-efm32 | |
parent | ARM: Remove PicoXcell platform support (diff) | |
download | linux-cc6111375cec44890218e5be654884f8b7bfc566.tar.xz linux-cc6111375cec44890218e5be654884f8b7bfc566.zip |
ARM: drop efm32 platform
I didn't touch this code since it served as a platform to introduce
ARMv7-M support to Linux. The only known machine that runs Linux has only
4 MiB of RAM (that originally only exists to hold the display's framebuffer).
There are no known users and no further use foreseeable, so drop the
code.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20210115155130.185010-2-u.kleine-koenig@pengutronix.de'
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-efm32')
-rw-r--r-- | arch/arm/mach-efm32/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-efm32/Makefile.boot | 4 | ||||
-rw-r--r-- | arch/arm/mach-efm32/dtmachine.c | 16 |
3 files changed, 0 insertions, 22 deletions
diff --git a/arch/arm/mach-efm32/Makefile b/arch/arm/mach-efm32/Makefile deleted file mode 100644 index dede3fa55a76..000000000000 --- a/arch/arm/mach-efm32/Makefile +++ /dev/null @@ -1,2 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only -obj-y += dtmachine.o diff --git a/arch/arm/mach-efm32/Makefile.boot b/arch/arm/mach-efm32/Makefile.boot deleted file mode 100644 index cec195d4fcba..000000000000 --- a/arch/arm/mach-efm32/Makefile.boot +++ /dev/null @@ -1,4 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only -# Empty file waiting for deletion once Makefile.boot isn't needed any more. -# Patch waits for application at -# http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7889/1 . diff --git a/arch/arm/mach-efm32/dtmachine.c b/arch/arm/mach-efm32/dtmachine.c deleted file mode 100644 index e9364b843641..000000000000 --- a/arch/arm/mach-efm32/dtmachine.c +++ /dev/null @@ -1,16 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0 -#include <linux/kernel.h> - -#include <asm/v7m.h> - -#include <asm/mach/arch.h> - -static const char *const efm32gg_compat[] __initconst = { - "efm32,dk3750", - NULL -}; - -DT_MACHINE_START(EFM32DT, "EFM32 (Device Tree Support)") - .dt_compat = efm32gg_compat, - .restart = armv7m_restart, -MACHINE_END |