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: Fri, 13 Mar 2009 15:20:25 +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 76a89ca..c8bcc88 100644
--- a/exec.c
+++ b/exec.c
@@ -2436,7 +2436,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);
@@ -2447,7 +2447,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);
@@ -2458,7 +2458,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]