All of lore.kernel.org
 help / color / mirror / Atom feed
From: John Baboval <john.baboval@virtualcomputer.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] IDE Debug compiler warnings
Date: Fri, 28 Oct 2011 15:39:27 -0400	[thread overview]
Message-ID: <4EAB04EF.3080208@virtualcomputer.com> (raw)

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

Signed-off-by: John V. Baboval <john.baboval@virtualcomputer.com>
---
  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	other threads:[~2011-10-28 19:39 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-28 19:39 John Baboval [this message]
2011-10-28 20:47 ` [Qemu-devel] [PATCH] IDE Debug compiler warnings Peter Maydell
2011-10-28 21:15   ` Max Filippov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4EAB04EF.3080208@virtualcomputer.com \
    --to=john.baboval@virtualcomputer.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.