arch/arm64/include/armv8/arch/barrier.h: Add spaces around colons

The linter requests spaces around colons. Add them.

Signed-off-by: Yuchen He <yuchenhe126@gmail.com>
Change-Id: I46d11666126dd8585ef7d4bab68a5b4b01fb7c29
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73748
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Yuchen He 2023-03-16 22:37:10 +01:00 committed by Felix Singer
parent ed029a9c6c
commit 452c41b601
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#define wmb() asm volatile("dsb st" : : : "memory") #define wmb() asm volatile("dsb st" : : : "memory")
#if CONFIG(SMP) #if CONFIG(SMP)
#define barrier() __asm__ __volatile__("": : :"memory") #define barrier() __asm__ __volatile__("" : : : "memory")
#endif #endif
#define nop() asm volatile("nop"); #define nop() asm volatile("nop");