mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
753441c889
commit
a1fa47fad1
|
@ -1424,12 +1424,10 @@ void store_booke_tsr(CPUPPCState *env, target_ulong val);
|
||||||
void ppc_tlb_invalidate_all(CPUPPCState *env);
|
void ppc_tlb_invalidate_all(CPUPPCState *env);
|
||||||
void ppc_tlb_invalidate_one(CPUPPCState *env, target_ulong addr);
|
void ppc_tlb_invalidate_one(CPUPPCState *env, target_ulong addr);
|
||||||
void cpu_ppc_set_vhyp(PowerPCCPU *cpu, PPCVirtualHypervisor *vhyp);
|
void cpu_ppc_set_vhyp(PowerPCCPU *cpu, PPCVirtualHypervisor *vhyp);
|
||||||
int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb,
|
int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb, hwaddr *raddrp,
|
||||||
hwaddr *raddrp, target_ulong address,
|
target_ulong address, uint32_t pid);
|
||||||
uint32_t pid);
|
|
||||||
int ppcemb_tlb_search(CPUPPCState *env, target_ulong address, uint32_t pid);
|
int ppcemb_tlb_search(CPUPPCState *env, target_ulong address, uint32_t pid);
|
||||||
hwaddr booke206_tlb_to_page_size(CPUPPCState *env,
|
hwaddr booke206_tlb_to_page_size(CPUPPCState *env, ppcmas_tlb_t *tlb);
|
||||||
ppcmas_tlb_t *tlb);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void ppc_store_fpscr(CPUPPCState *env, target_ulong val);
|
void ppc_store_fpscr(CPUPPCState *env, target_ulong val);
|
||||||
|
|
|
@ -694,8 +694,7 @@ static int mmubooke_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
hwaddr booke206_tlb_to_page_size(CPUPPCState *env,
|
hwaddr booke206_tlb_to_page_size(CPUPPCState *env, ppcmas_tlb_t *tlb)
|
||||||
ppcmas_tlb_t *tlb)
|
|
||||||
{
|
{
|
||||||
int tlbm_size;
|
int tlbm_size;
|
||||||
|
|
||||||
|
@ -705,9 +704,8 @@ hwaddr booke206_tlb_to_page_size(CPUPPCState *env,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TLB check function for MAS based SoftTLBs */
|
/* TLB check function for MAS based SoftTLBs */
|
||||||
int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb,
|
int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb, hwaddr *raddrp,
|
||||||
hwaddr *raddrp, target_ulong address,
|
target_ulong address, uint32_t pid)
|
||||||
uint32_t pid)
|
|
||||||
{
|
{
|
||||||
hwaddr mask;
|
hwaddr mask;
|
||||||
uint32_t tlb_pid;
|
uint32_t tlb_pid;
|
||||||
|
|
Loading…
Reference in New Issue