qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] IDE Debug compiler warnings


From: John Baboval
Subject: [Qemu-devel] [PATCH] IDE Debug compiler warnings
Date: Fri, 28 Oct 2011 15:39:27 -0400
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110516 Thunderbird/3.1.10

This fixes up a few compiler warnings/errors when building with
IDE_DEBUG or AHCI_DEBUG enabled.

Signed-off-by: John V. Baboval <address@hidden>
---
 hw/ide/ahci.c |    2 +-
 hw/ide/pci.c  |    2 +-
 hw/ide/piix.c |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index 1c7e3a0..79277bb 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -327,7 +327,7 @@ static void ahci_mem_write(void *opaque, target_phys_addr_t addr,
     }
      if (addr < AHCI_GENERIC_HOST_CONTROL_REGS_MAX_ADDR) {
-        DPRINTF(-1, "(addr 0x%08X), val 0x%08X\n", (unsigned) addr, val);
+        DPRINTF(-1, "(addr 0x%08X), val 0x%08lX\n", (unsigned) addr, val);
          switch (addr) {
             case HOST_CAP: /* R/WO, RO */
diff --git a/hw/ide/pci.c b/hw/ide/pci.c
index f133c42..0d3f2f9 100644
--- a/hw/ide/pci.c
+++ b/hw/ide/pci.c
@@ -335,7 +335,7 @@ static uint64_t bmdma_addr_read(void *opaque, target_phys_addr_t addr,
      data = (bm->addr >> (addr * 8)) & mask;
 #ifdef DEBUG_IDE
-    printf("%s: 0x%08x\n", __func__, (unsigned)*data);
+    printf("%s: 0x%08x\n", __func__, (unsigned)data);
 #endif
     return data;
 }
diff --git a/hw/ide/piix.c b/hw/ide/piix.c
index 08cbbe2..3d71126 100644
--- a/hw/ide/piix.c
+++ b/hw/ide/piix.c
@@ -53,7 +53,7 @@ static uint64_t bmdma_read(void *opaque, target_phys_addr_t addr, unsigned size)
         break;
     }
 #ifdef DEBUG_IDE
-    printf("bmdma: readb 0x%02x : 0x%02x\n", addr, val);
+    printf("bmdma: readb 0x%02lx : 0x%02x\n", addr, val);
 #endif
     return val;
 }
@@ -68,7 +68,7 @@ static void bmdma_write(void *opaque, target_phys_addr_t addr,
     }
  #ifdef DEBUG_IDE
-    printf("bmdma: writeb 0x%02x : 0x%02x\n", addr, val);
+    printf("bmdma: writeb 0x%02lx : 0x%02lx\n", addr, val);
 #endif
     switch(addr & 3) {
     case 0:
--
1.7.4.1




reply via email to

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