From 84a031c68fd657f2973e7c2ce0207588c66fbd58 Mon Sep 17 00:00:00 2001 From: aurel32 Date: Sat, 7 Feb 2009 15:19:20 +0000 Subject: Fix cpu_arm_handle_mmu_fault warning This patch fixes: /scratch/froydnj/qemu.git/target-arm/helper.c:451: warning: no previous prototype for 'cpu_arm_handle_mmu_fault' by moving the declaration of the function to cpu.h from exec.h. cpu.h seems to be the place most other ports declare the corresponding function. Signed-off-by: Nathan Froyd Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6550 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-arm/cpu.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'target-arm/cpu.h') diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 54c2c2e3f8..cab80cdfe6 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -217,6 +217,8 @@ uint32_t do_arm_semihosting(CPUARMState *env); is returned if the signal was handled by the virtual CPU. */ int cpu_arm_signal_handler(int host_signum, void *pinfo, void *puc); +int cpu_arm_handle_mmu_fault (CPUARMState *env, target_ulong address, int rw, + int mmu_idx, int is_softmuu); void cpu_lock(void); void cpu_unlock(void); -- cgit v1.2.3