From 5b6957eed75ca7842861e0f6765d0f6a64408e05 Mon Sep 17 00:00:00 2001 From: Anup Patel Date: Thu, 26 Mar 2020 18:10:02 +0530 Subject: include: Use more consistent name for atomic xchg() and cmpxchg() We should remove the "arch_" prefix from atomic xchg() and cmpxchg() function names to have consistent naming of all atomic functions. Signed-off-by: Anup Patel Reviewed-by: Atish Patra --- lib/sbi/sbi_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sbi/sbi_init.c') diff --git a/lib/sbi/sbi_init.c b/lib/sbi/sbi_init.c index 4e1699d..f0ce209 100644 --- a/lib/sbi/sbi_init.c +++ b/lib/sbi/sbi_init.c @@ -285,7 +285,7 @@ void __noreturn sbi_init(struct sbi_scratch *scratch) sbi_platform_hart_invalid(plat, hartid)) sbi_hart_hang(); - if (arch_atomic_xchg(&coldboot_lottery, 1) == 0) + if (atomic_xchg(&coldboot_lottery, 1) == 0) coldboot = TRUE; if (coldboot) -- cgit v1.2.3