diff options
author | Tom Rini | 2022-10-11 09:55:56 -0400 |
---|---|---|
committer | Tom Rini | 2022-10-11 09:55:56 -0400 |
commit | 20be7c19a2d6d4a994c40c014ae53b39bdcfacf1 (patch) | |
tree | ed222f4adeea81c61a6272d192870b2e219a2050 /common/spl/spl_atf.c | |
parent | c4c32e359662aa95d9dbda2bd1272181bd9cb830 (diff) | |
parent | db9d55e2103351cfc8925aadaf5584fe84f61c9f (diff) |
Merge branch '2022-10-10-LLVM-related-improvements'
- A few patches to make building with LLVM/LLD easier
Diffstat (limited to 'common/spl/spl_atf.c')
-rw-r--r-- | common/spl/spl_atf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_atf.c b/common/spl/spl_atf.c index e1b68dd5616..bae5c010c8c 100644 --- a/common/spl/spl_atf.c +++ b/common/spl/spl_atf.c @@ -184,7 +184,7 @@ __weak struct bl_params *bl2_plat_get_bl31_params_v2(uintptr_t bl32_entry, static inline void raw_write_daif(unsigned int daif) { - __asm__ __volatile__("msr DAIF, %0\n\t" : : "r" (daif) : "memory"); + __asm__ __volatile__("msr DAIF, %x0\n\t" : : "r" (daif) : "memory"); } typedef void (*atf_entry_t)(struct bl31_params *params, void *plat_params); |