diff options
author | BALATON Zoltan <balaton@eik.bme.hu> | 2023-05-30 15:28:10 +0200 |
---|---|---|
committer | Daniel Henrique Barboza <danielhb413@gmail.com> | 2023-06-10 10:19:24 -0300 |
commit | a1fa47fad12ea104b2d3f7f8b39f102bc16df539 (patch) | |
tree | 2d6118cad0e895330c26efa713f334534cceecab /target/ppc/mmu_common.c | |
parent | 753441c8898e5de41e6051f9d1244e98849bb866 (diff) | |
download | qemu-a1fa47fad12ea104b2d3f7f8b39f102bc16df539.zip qemu-a1fa47fad12ea104b2d3f7f8b39f102bc16df539.tar.gz qemu-a1fa47fad12ea104b2d3f7f8b39f102bc16df539.tar.bz2 |
target/ppc: Remove some unneded line breaks
Make lines shorter and fix indentation in some functions prototypes.
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <70952ba2d82141db1cf5cfcf4b227402be575874.1685448535.git.balaton@eik.bme.hu>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'target/ppc/mmu_common.c')
-rw-r--r-- | target/ppc/mmu_common.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/target/ppc/mmu_common.c b/target/ppc/mmu_common.c index 845eee4c..a84bc7d 100644 --- a/target/ppc/mmu_common.c +++ b/target/ppc/mmu_common.c @@ -694,8 +694,7 @@ static int mmubooke_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx, return ret; } -hwaddr booke206_tlb_to_page_size(CPUPPCState *env, - ppcmas_tlb_t *tlb) +hwaddr booke206_tlb_to_page_size(CPUPPCState *env, ppcmas_tlb_t *tlb) { int tlbm_size; @@ -705,9 +704,8 @@ hwaddr booke206_tlb_to_page_size(CPUPPCState *env, } /* TLB check function for MAS based SoftTLBs */ -int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb, - hwaddr *raddrp, target_ulong address, - uint32_t pid) +int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb, hwaddr *raddrp, + target_ulong address, uint32_t pid) { hwaddr mask; uint32_t tlb_pid; |