qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 06/24] Be slightly more verbose for unassigned_mem_r


From: Tristan Gingold
Subject: [Qemu-devel] [PATCH 06/24] Be slightly more verbose for unassigned_mem_read*
Date: Thu, 19 Mar 2009 15:35:38 +0100

This was found useful while adding new devices.

Signed-off-by: Tristan Gingold <address@hidden>
---
 exec.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/exec.c b/exec.c
index 75a4c27..72a1fc9 100644
--- a/exec.c
+++ b/exec.c
@@ -2437,7 +2437,7 @@ void qemu_ram_free(ram_addr_t addr)
 static uint32_t unassigned_mem_readb(void *opaque, target_phys_addr_t addr)
 {
 #ifdef DEBUG_UNASSIGNED
-    printf("Unassigned mem read " TARGET_FMT_plx "\n", addr);
+    printf("Unassigned mem readb " TARGET_FMT_plx "\n", addr);
 #endif
 #if defined(TARGET_SPARC)
     do_unassigned_access(addr, 0, 0, 0, 1);
@@ -2448,7 +2448,7 @@ static uint32_t unassigned_mem_readb(void *opaque, 
target_phys_addr_t addr)
 static uint32_t unassigned_mem_readw(void *opaque, target_phys_addr_t addr)
 {
 #ifdef DEBUG_UNASSIGNED
-    printf("Unassigned mem read " TARGET_FMT_plx "\n", addr);
+    printf("Unassigned mem readw " TARGET_FMT_plx "\n", addr);
 #endif
 #if defined(TARGET_SPARC)
     do_unassigned_access(addr, 0, 0, 0, 2);
@@ -2459,7 +2459,7 @@ static uint32_t unassigned_mem_readw(void *opaque, 
target_phys_addr_t addr)
 static uint32_t unassigned_mem_readl(void *opaque, target_phys_addr_t addr)
 {
 #ifdef DEBUG_UNASSIGNED
-    printf("Unassigned mem read " TARGET_FMT_plx "\n", addr);
+    printf("Unassigned mem readl " TARGET_FMT_plx "\n", addr);
 #endif
 #if defined(TARGET_SPARC)
     do_unassigned_access(addr, 0, 0, 0, 4);
-- 
1.6.2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]