diff options
Diffstat (limited to 'arch/arm/mm/proc-v6.S')
| -rw-r--r-- | arch/arm/mm/proc-v6.S | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mm/proc-v6.S b/arch/arm/mm/proc-v6.S index 087e239704d..524ddae9259 100644 --- a/arch/arm/mm/proc-v6.S +++ b/arch/arm/mm/proc-v6.S @@ -170,6 +170,9 @@ __v6_setup:  #endif /* CONFIG_MMU */  	adr	r5, v6_crval  	ldmia	r5, {r5, r6} +#ifdef CONFIG_CPU_ENDIAN_BE8 +	orr	r6, r6, #1 << 25		@ big-endian page tables +#endif  	mrc	p15, 0, r0, c1, c0, 0		@ read control register  	bic	r0, r0, r5			@ clear bits them  	orr	r0, r0, r6			@ set them  |