diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2017-06-19 21:57:33 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2017-06-21 16:18:33 +1000 |
commit | fd88b945c18866962645d09dfc401e91e13b1909 (patch) | |
tree | f5725e1e83a6824c280456c55c55c04fded58a01 /arch/powerpc/kernel | |
parent | 442b6e8e03e44dc3a33142ab3b8d0b3395053274 (diff) | |
download | op-kernel-dev-fd88b945c18866962645d09dfc401e91e13b1909.zip op-kernel-dev-fd88b945c18866962645d09dfc401e91e13b1909.tar.gz |
powerpc/64s: Rename slb_allocate_realmode() to slb_allocate()
As for slb_miss_realmode(), rename slb_allocate_realmode() to avoid
confusion over whether it runs in real or virtual mode - it runs in
both.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Reviewed-by: Nicholas Piggin <npiggin@gmail.com>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/exceptions-64s.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/exceptions-64s.S b/arch/powerpc/kernel/exceptions-64s.S index 6ad755e..07b79c2 100644 --- a/arch/powerpc/kernel/exceptions-64s.S +++ b/arch/powerpc/kernel/exceptions-64s.S @@ -605,7 +605,7 @@ EXC_COMMON_BEGIN(slb_miss_common) crset 4*cr0+eq #ifdef CONFIG_PPC_STD_MMU_64 BEGIN_MMU_FTR_SECTION - bl slb_allocate_realmode + bl slb_allocate END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_RADIX) #endif |