[PATCH 09/24] target/ppc/mmu_common.c: Rename get_bat_6xx_tlb()

BALATON Zoltan posted 24 patches 1 year, 9 months ago
Maintainers: Nicholas Piggin <npiggin@gmail.com>, Daniel Henrique Barboza <danielhb413@gmail.com>
There is a newer version of this series
[PATCH 09/24] target/ppc/mmu_common.c: Rename get_bat_6xx_tlb()
Posted by BALATON Zoltan 1 year, 9 months ago
Rename to ppc6xx_tlb_get_bat() to match other similar names in the
same file.

Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
 target/ppc/mmu_common.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/target/ppc/mmu_common.c b/target/ppc/mmu_common.c
index 47346adb88..1fbf5a1bb0 100644
--- a/target/ppc/mmu_common.c
+++ b/target/ppc/mmu_common.c
@@ -288,8 +288,8 @@ static inline void bat_size_prot(CPUPPCState *env, target_ulong *blp,
     *protp = prot;
 }
 
-static int get_bat_6xx_tlb(CPUPPCState *env, mmu_ctx_t *ctx,
-                           target_ulong virtual, MMUAccessType access_type)
+static int ppc6xx_tlb_get_bat(CPUPPCState *env, mmu_ctx_t *ctx,
+                              target_ulong virtual, MMUAccessType access_type)
 {
     target_ulong *BATlt, *BATut, *BATu, *BATl;
     target_ulong BEPIl, BEPIu, bl;
@@ -371,7 +371,7 @@ static int mmu6xx_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
 
     /* First try to find a BAT entry if there are any */
     if (env->nb_BATs != 0) {
-        ret = get_bat_6xx_tlb(env, ctx, eaddr, access_type);
+        ret = ppc6xx_tlb_get_bat(env, ctx, eaddr, access_type);
     }
     if (ret >= 0) {
         return ret;
-- 
2.30.9