diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-10-05 04:57:37 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-10-13 11:27:05 -0700 |
| commit | 4e6939c9344cd99059571c51457d7f024d1572de (patch) | |
| tree | d1bb68f871dfbbd2c682253bee7901b0604327f4 /target/hppa/op_helper.c | |
| parent | 795592fef7d5d66a67b95a7f45cc1a84883db6a8 (diff) | |
| download | focaccia-qemu-4e6939c9344cd99059571c51457d7f024d1572de.tar.gz focaccia-qemu-4e6939c9344cd99059571c51457d7f024d1572de.zip | |
target/hppa: Add MemOp argument to hppa_get_physical_address
Just add the argument, unused at this point. Zero is the safe do-nothing value for all callers. Reviewed-by: Helge Deller <deller@gmx.de> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to '')
| -rw-r--r-- | target/hppa/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/hppa/op_helper.c b/target/hppa/op_helper.c index 7f79196fff..744325969f 100644 --- a/target/hppa/op_helper.c +++ b/target/hppa/op_helper.c @@ -334,7 +334,7 @@ target_ulong HELPER(probe)(CPUHPPAState *env, target_ulong addr, } mmu_idx = PRIV_P_TO_MMU_IDX(level, env->psw & PSW_P); - excp = hppa_get_physical_address(env, addr, mmu_idx, 0, &phys, &prot); + excp = hppa_get_physical_address(env, addr, mmu_idx, 0, 0, &phys, &prot); if (excp >= 0) { cpu_restore_state(env_cpu(env), GETPC()); hppa_set_ior_and_isr(env, addr, MMU_IDX_MMU_DISABLED(mmu_idx)); |