From f4b2051bdc409d0537c04d29cede0a1c946158f0 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 9 May 2023 16:18:45 +0200 Subject: ARM: Add _32 suffix to aarch32 specific filenames Several files in arch/arm/cpu/ have 32bit and 64bit versions. The 64bit versions have a _64 suffix, but the 32bit versions have none. This can be confusing sometimes as one doesn't know if a file is 32bit specific or common code. Add a _32 suffix to the 32bit files to avoid this confusion. Signed-off-by: Sascha Hauer Reviewed-by: Ahmad Fatoum --- arch/arm/cpu/entry_ll.S | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 arch/arm/cpu/entry_ll.S (limited to 'arch/arm/cpu/entry_ll.S') diff --git a/arch/arm/cpu/entry_ll.S b/arch/arm/cpu/entry_ll.S deleted file mode 100644 index 2800174c45..0000000000 --- a/arch/arm/cpu/entry_ll.S +++ /dev/null @@ -1,27 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ - -#include -#include - -/* - * r0: memory base - * r1: memory size - * r2: board data - * r3: new value for SP - */ -.section .text.__barebox_arm_entry -ENTRY(__barebox_arm_entry) - mov sp, r3 - mov r4, r0 - mov r5, r1 - mov r6, r2 - bl arm_early_mmu_cache_invalidate - mov r0, r4 - mov r1, r5 - mov r2, r6 -#if IS_ENABLED(CONFIG_PBL_IMAGE) - b barebox_pbl_start -#else - b barebox_non_pbl_start -#endif -ENDPROC(__barebox_arm_entry) -- cgit v1.2.3