On Mon, 13 Apr 2020 at 22:40, Trevor Woerner <twoer...@gmail.com> wrote: > > 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) > > Signed-off-by: Trevor Woerner <twoer...@gmail.com> > --- > arch/arm/Kconfig | 2 +- > arch/arm/Makefile | 1 + > arch/arm/cpu/arm926ejs/Makefile | 1 - > arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/Kconfig | 0 > arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/Makefile | 0 > arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/clk.c | 0 > arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/cpu.c | 0 > arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/devices.c | 0 > arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/dram.c | 0 > .../arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/lowlevel_init.S | 0 > arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/timer.c | 0 > 11 files changed, 2 insertions(+), 2 deletions(-) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/Kconfig (100%) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/Makefile (100%) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/clk.c (100%) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/cpu.c (100%) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/devices.c (100%) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/dram.c (100%) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/lowlevel_init.S > (100%) > rename arch/arm/{cpu/arm926ejs/lpc32xx => mach-lpc32xx}/timer.c (100%) >
Reviewed-by: Simon Glass <s...@chromium.org>