arch/armv7-a: Change space to tab in arm_smccc.S

follow the coding style from other assembler source files

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2023-12-26 12:09:03 +08:00 committed by archer
parent 770d579630
commit 087c519dd6

View File

@ -49,6 +49,7 @@
.global arm_smccc_smc
.type arm_smccc_smc, function
arm_smccc_smc:
mov r12, sp
push {r4-r7}
@ -59,12 +60,15 @@ arm_smccc_smc:
stm r12, {r0-r3}
bx lr
.size arm_smccc_smc, . - arm_smccc_smc
/* The HVC instruction is used to generate a synchronous exception that is
* handled by a hypervisor running in EL2.
*/
.global arm_smccc_hvc
.type arm_smccc_hvc, function
arm_smccc_hvc:
mov r12, sp
push {r4-r7}
@ -74,3 +78,6 @@ arm_smccc_hvc:
ldr r12, [sp, #(4 * 4)]
stm r12, {r0-r3}
bx lr
.size arm_smccc_hvc, . - arm_smccc_hvc
.end