diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2013-03-12 00:31:49 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2013-03-22 15:28:53 +0100 |
commit | eb20c1c6da60c8c75f08def03b0822a48af620ac (patch) | |
tree | 744b0f4e0615ef4966b6bcca5fd4b87259704564 /target-ppc/cpu.h | |
parent | cc8eae8ac7a493b6968238cf8aa5a21026858bae (diff) |
target-ppc: Move ppc tlb_fill implementation into mmu_helper.c
For softmmu builds the interface from the generic code to the target
specific MMU implementation is through the tlb_fill() function. For ppc
this is currently in mem_helper.c, whereas it would make more sense in
mmu_helper.c. This patch moves it, which also allows
cpu_ppc_handle_mmu_fault() to become a local function in mmu_helper.c
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc/cpu.h')
-rw-r--r-- | target-ppc/cpu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 17774386c0..42c36e2829 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -1090,8 +1090,6 @@ int cpu_ppc_exec (CPUPPCState *s); is returned if the signal was handled by the virtual CPU. */ int cpu_ppc_signal_handler (int host_signum, void *pinfo, void *puc); -int cpu_ppc_handle_mmu_fault (CPUPPCState *env, target_ulong address, int rw, - int mmu_idx); void ppc_hw_interrupt (CPUPPCState *env); #if defined(CONFIG_USER_ONLY) int cpu_handle_mmu_fault(CPUPPCState *env, target_ulong address, int rw, |