diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2014-07-10 12:29:20 +1000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-07-28 14:10:23 +1000 |
commit | 13b3d13b813ab834fac67dc05f8b86dbcc29c134 (patch) | |
tree | eb13d92d8920a73e5152be63cd4fb5622e65e3ad /arch/powerpc/kernel/process.c | |
parent | 376af5947c0e441ccbf98f0212d4ffbf171528f6 (diff) | |
download | linux-13b3d13b813ab834fac67dc05f8b86dbcc29c134.tar.gz linux-13b3d13b813ab834fac67dc05f8b86dbcc29c134.tar.bz2 linux-13b3d13b813ab834fac67dc05f8b86dbcc29c134.zip |
powerpc: Remove MMU_FTR_SLB
We now only support cpus that use an SLB, so we don't need an MMU
feature to indicate that.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/process.c')
-rw-r--r-- | arch/powerpc/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c index be99774d3f44..e39f388fc25c 100644 --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c @@ -1175,7 +1175,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp, #endif #ifdef CONFIG_PPC_STD_MMU_64 - if (mmu_has_feature(MMU_FTR_SLB)) { + { unsigned long sp_vsid; unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp; |