The branch main has been updated by andrew:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=2790ff21452f007b7c6004497773e7e80df90371

commit 2790ff21452f007b7c6004497773e7e80df90371
Author:     Andrew Turner <[email protected]>
AuthorDate: 2024-05-16 14:38:15 +0000
Commit:     Andrew Turner <[email protected]>
CommitDate: 2024-05-17 13:19:59 +0000

    dev/psci: Fix a function name
    
    dd a missing underscore to arm_smccc_1_2_* to fix the GCC build.
    
    Sponsored by:   Arm Ltd
---
 sys/dev/psci/smccc_arm64.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/psci/smccc_arm64.S b/sys/dev/psci/smccc_arm64.S
index 3d3c9fc837b1..25a64669fab3 100644
--- a/sys/dev/psci/smccc_arm64.S
+++ b/sys/dev/psci/smccc_arm64.S
@@ -77,7 +77,7 @@ ENTRY(arm_smccc_1_2_\insn)
        stp     x16, x17, [x19, #16 * 8]
 1:     ldp     xzr, x19, [sp], #16
        ret
-END(arm_smccc_1_2\insn)
+END(arm_smccc_1_2_\insn)
 .endm
 /* int arm_smccc_1_2_*(const struct arm_smccc_1_2_regs *args,
  *     struct arm_smccc_1_2_regs *res)

Reply via email to