]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
booke/powerpc: define wimge shift mask to fix compilation error
authorBharat Bhushan <r65777@freescale.com>
Tue, 13 May 2014 06:48:22 +0000 (12:18 +0530)
committerScott Wood <scottwood@freescale.com>
Wed, 25 Jun 2014 23:49:39 +0000 (18:49 -0500)
This fixes below compilation error on SOCs where CONFIG_PHYS_64BIT
is not defined:

 arch/powerpc/kvm/e500_mmu_host.c: In function 'kvmppc_e500_shadow_map':
| arch/powerpc/kvm/e500_mmu_host.c:631:20: error: 'PTE_WIMGE_SHIFT' undeclared (first use in this function)
|    wimg = (*ptep >> PTE_WIMGE_SHIFT) & MAS2_WIMGE_MASK;
|                     ^
| arch/powerpc/kvm/e500_mmu_host.c:631:20: note: each undeclared identifier is reported only once for each function it appears in
| make[1]: *** [arch/powerpc/kvm/e500_mmu_host.o] Error 1

Signed-off-by: Bharat Bhushan <Bharat.Bhushan@freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
arch/powerpc/include/asm/pte-fsl-booke.h

index 2c12be5f677a1cf0468f0afcba993905dc1a7538..e84dd7ed505eb7394716e3a583533924b1cdfedb 100644 (file)
@@ -37,5 +37,7 @@
 #define _PMD_PRESENT_MASK (PAGE_MASK)
 #define _PMD_BAD       (~PAGE_MASK)
 
+#define PTE_WIMGE_SHIFT (6)
+
 #endif /* __KERNEL__ */
 #endif /*  _ASM_POWERPC_PTE_FSL_BOOKE_H */