aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/nyan/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/nyan/romstage.c')
-rw-r--r--src/mainboard/google/nyan/romstage.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/nyan/romstage.c b/src/mainboard/google/nyan/romstage.c
index d7daea8291..c3e87fba78 100644
--- a/src/mainboard/google/nyan/romstage.c
+++ b/src/mainboard/google/nyan/romstage.c
@@ -136,6 +136,7 @@ static void __attribute__((noinline)) romstage(void)
/* Stub to force arm_init_caches to the top, before any stack/memory accesses */
void main(void)
{
- asm ("bl arm_init_caches" ::: "r0","r1","r2","r3","r4","r5","ip");
+ asm volatile ("bl arm_init_caches"
+ ::: "r0","r1","r2","r3","r4","r5","ip");
romstage();
}