csky: delay: Add function alignment
authorJialu Xu <xujialu@vimux.org>
Mon, 19 Dec 2022 06:36:41 +0000 (14:36 +0800)
committerGuo Ren <guoren@linux.alibaba.com>
Fri, 30 Dec 2022 04:47:52 +0000 (23:47 -0500)
Specify 8 bytes alignment for the function __delay or we get bad
delay like udelay(10) will be 25us in fact.

Signed-off-by: Jialu Xu <xujialu@vimux.org>
Signed-off-by: Guo Ren <guoren@kernel.org>
arch/csky/lib/delay.c

index 22570b0790d6fb9436e389a51c16833974c7b547..f5db317313bb3303532da94d5eb883889f6b18fc 100644 (file)
@@ -5,7 +5,7 @@
 #include <linux/init.h>
 #include <linux/delay.h>
 
-void __delay(unsigned long loops)
+void __aligned(8) __delay(unsigned long loops)
 {
        asm volatile (
                "mov r0, r0\n"