Commit 253f0d4a authored by Paul Burton's avatar Paul Burton Committed by Ralf Baechle

MIPS: Remove redundant asm/pgtable-bits.h inclusions

asm/pgtable-bits.h is included in 2 assembly files and thus has to
ifdef around C code, however nothing defined by the header is used
in either of the assembly files that include it.

Remove the redundant inclusions such that asm/pgtable-bits.h doesn't
need to #ifdef around C code, for cleanliness and in preparation for
later patches which will add more C.
Signed-off-by: default avatarPaul Burton <paul.burton@imgtec.com>
Reviewed-by: default avatarJames Hogan <james.hogan@imgtec.com>
Cc: Maciej W. Rozycki <macro@linux-mips.org>
Cc: Jonas Gorski <jogo@openwrt.org>
Cc: Alex Smith <alex.smith@imgtec.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/13114/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 14bc2414
...@@ -191,7 +191,6 @@ ...@@ -191,7 +191,6 @@
*/ */
#ifndef __ASSEMBLY__
/* /*
* pte_to_entrylo converts a page table entry (PTE) into a Mips * pte_to_entrylo converts a page table entry (PTE) into a Mips
* entrylo0/1 value. * entrylo0/1 value.
...@@ -218,7 +217,6 @@ static inline uint64_t pte_to_entrylo(unsigned long pte_val) ...@@ -218,7 +217,6 @@ static inline uint64_t pte_to_entrylo(unsigned long pte_val)
return pte_val >> _PAGE_GLOBAL_SHIFT; return pte_val >> _PAGE_GLOBAL_SHIFT;
} }
#endif
/* /*
* Cache attributes * Cache attributes
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include <asm/asmmacro.h> #include <asm/asmmacro.h>
#include <asm/irqflags.h> #include <asm/irqflags.h>
#include <asm/regdef.h> #include <asm/regdef.h>
#include <asm/pgtable-bits.h>
#include <asm/mipsregs.h> #include <asm/mipsregs.h>
#include <asm/stackframe.h> #include <asm/stackframe.h>
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
#include <asm/fpregdef.h> #include <asm/fpregdef.h>
#include <asm/mipsregs.h> #include <asm/mipsregs.h>
#include <asm/asm-offsets.h> #include <asm/asm-offsets.h>
#include <asm/pgtable-bits.h>
#include <asm/regdef.h> #include <asm/regdef.h>
#include <asm/stackframe.h> #include <asm/stackframe.h>
#include <asm/thread_info.h> #include <asm/thread_info.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment