arm: lpc32xx: move SoC to mach-lpc32xx
authorTrevor Woerner <twoerner@gmail.com>
Wed, 6 May 2020 12:02:36 +0000 (08:02 -0400)
committerTom Rini <trini@konsulko.com>
Fri, 15 May 2020 18:47:35 +0000 (14:47 -0400)
commitb3d9a8b1857878fd72bf5385d91585fbafe516d6
treefd11b9f6b343aabb33247b4b3fe4ccfde1cc8a6f
parent0ff042d836f2a40b2104d4501111fbb340293c5c
arm: lpc32xx: move SoC to mach-lpc32xx

Following the example of most other SoCs in arch/$(ARCH)/cpu/$(CPU)/$(SOC)
move the lpc32xx code from arch/arm/cpu/arm926ejs/lpc32xx to
arch/arm/mach-lpc32xx.

Following the checklist from
commit 01f14456306c ("ARM: prepare for moving SoC sources into mach-*"):

    [1] move files from arch/arm/cpu/arm926ejs/lpc32xx to arch/arm/mach-lpx32xx
    [2] add machine entry to arch/arm/Makefile
    [3] remove "obj-y += ..." from arch/arm/cpu/arm926ejs/Makefile
    [4] fix the Kconfig file path in arch/arm/Kconfig
    [5] (no MAINTAINERS update)

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
19 files changed:
arch/arm/Kconfig
arch/arm/Makefile
arch/arm/cpu/arm926ejs/Makefile
arch/arm/cpu/arm926ejs/lpc32xx/Kconfig [deleted file]
arch/arm/cpu/arm926ejs/lpc32xx/Makefile [deleted file]
arch/arm/cpu/arm926ejs/lpc32xx/clk.c [deleted file]
arch/arm/cpu/arm926ejs/lpc32xx/cpu.c [deleted file]
arch/arm/cpu/arm926ejs/lpc32xx/devices.c [deleted file]
arch/arm/cpu/arm926ejs/lpc32xx/dram.c [deleted file]
arch/arm/cpu/arm926ejs/lpc32xx/lowlevel_init.S [deleted file]
arch/arm/cpu/arm926ejs/lpc32xx/timer.c [deleted file]
arch/arm/mach-lpc32xx/Kconfig [new file with mode: 0644]
arch/arm/mach-lpc32xx/Makefile [new file with mode: 0644]
arch/arm/mach-lpc32xx/clk.c [new file with mode: 0644]
arch/arm/mach-lpc32xx/cpu.c [new file with mode: 0644]
arch/arm/mach-lpc32xx/devices.c [new file with mode: 0644]
arch/arm/mach-lpc32xx/dram.c [new file with mode: 0644]
arch/arm/mach-lpc32xx/lowlevel_init.S [new file with mode: 0644]
arch/arm/mach-lpc32xx/timer.c [new file with mode: 0644]