diff options
Diffstat (limited to 'arch/arm/boot/compressed/head.S')
| -rw-r--r-- | arch/arm/boot/compressed/head.S | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S index cabdd8f4a248..e8e1c866e413 100644 --- a/arch/arm/boot/compressed/head.S +++ b/arch/arm/boot/compressed/head.S @@ -1450,7 +1450,8 @@ ENTRY(efi_enter_kernel)  		@ running beyond the PoU, and so calling cache_off below from  		@ inside the PE/COFF loader allocated region is unsafe unless  		@ we explicitly clean it to the PoC. -		adr	r0, call_cache_fn		@ region of code we will + ARM(		adrl	r0, call_cache_fn	) + THUMB(		adr	r0, call_cache_fn	)	@ region of code we will  		adr	r1, 0f				@ run with MMU off  		bl	cache_clean_flush  		bl	cache_off |