diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-13 13:35:27 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-12-17 17:33:48 +0100 |
commit | b81b971c7a87261f23359529cdd9d86fac57633f (patch) | |
tree | 7e560df56179e8a4e70ba39e503a36edf3da0449 /target-tricore/helper.c | |
parent | 48880da69644f9257b00daa937b8bbc69ddb60c7 (diff) | |
download | qemu-b81b971c7a87261f23359529cdd9d86fac57633f.zip |
tricore: avoid "naked" qemu_log
Cc: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-tricore/helper.c')
-rw-r--r-- | target-tricore/helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-tricore/helper.c b/target-tricore/helper.c index 1808b281f5..1b70429f3a 100644 --- a/target-tricore/helper.c +++ b/target-tricore/helper.c @@ -65,8 +65,8 @@ int cpu_tricore_handle_mmu_fault(CPUState *cs, target_ulong address, access_type = ACCESS_INT; ret = get_physical_address(env, &physical, &prot, address, rw, access_type); - qemu_log("%s address=" TARGET_FMT_lx " ret %d physical " TARGET_FMT_plx - " prot %d\n", __func__, address, ret, physical, prot); + qemu_log_mask(CPU_LOG_MMU, "%s address=" TARGET_FMT_lx " ret %d physical " TARGET_FMT_plx + " prot %d\n", __func__, address, ret, physical, prot); if (ret == TLBRET_MATCH) { tlb_set_page(cs, address & TARGET_PAGE_MASK, |