mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
arm: socfpga: Fix: Compile MCR instruction on ARM 32-bit only
MCR instruction only available in ARM 32-bit. So, compile MCR instruction when ARM 32-bit is enabled. Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
This commit is contained in:
parent
17b3f32dd0
commit
8c9f247a1a
1 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
|||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
void s_init(void) {
|
||||
#ifndef CONFIG_ARM64
|
||||
/*
|
||||
* Preconfigure ACTLR, make sure Write Full Line of Zeroes is disabled.
|
||||
* This is optional on CycloneV / ArriaV.
|
||||
|
@ -29,6 +30,7 @@ void s_init(void) {
|
|||
"isb\n"
|
||||
"dsb\n"
|
||||
::"r"(0x0));
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue