powerpc: book3e: _PAGE_LENDIAN must be _PAGE_ENDIAN
authorBharat Bhushan <r65777@freescale.com>
Thu, 19 Sep 2013 06:02:41 +0000 (11:32 +0530)
committerAlexander Graf <agraf@suse.de>
Thu, 17 Oct 2013 12:49:37 +0000 (14:49 +0200)
For booke3e _PAGE_ENDIAN is not defined. Infact what is defined
is "_PAGE_LENDIAN" which is wrong and that should be _PAGE_ENDIAN.
There are no compilation errors as
arch/powerpc/include/asm/pte-common.h defines _PAGE_ENDIAN to 0
as it is not defined anywhere.

Signed-off-by: Bharat Bhushan <bharat.bhushan@freescale.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/include/asm/pte-book3e.h

index 0156702ba24e2bb4f8c9131627dac0e9f6406c7e..576ad88104cbb4596a3b389eb64e9eb6f3a31e5e 100644 (file)
@@ -40,7 +40,7 @@
 #define _PAGE_U1       0x010000
 #define _PAGE_U0       0x020000
 #define _PAGE_ACCESSED 0x040000
-#define _PAGE_LENDIAN  0x080000
+#define _PAGE_ENDIAN   0x080000
 #define _PAGE_GUARDED  0x100000
 #define _PAGE_COHERENT 0x200000 /* M: enforce memory coherence */
 #define _PAGE_NO_CACHE 0x400000 /* I: cache inhibit */