From patchwork Mon Oct 5 10:06:42 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Isaku Yamahata X-Patchwork-Id: 34968 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C5C17B7BA1 for ; Mon, 5 Oct 2009 21:18:32 +1100 (EST) Received: from localhost ([127.0.0.1]:53380 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MukeD-0007SJ-4O for incoming@patchwork.ozlabs.org; Mon, 05 Oct 2009 06:18:29 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MukV9-0001EW-67 for qemu-devel@nongnu.org; Mon, 05 Oct 2009 06:09:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MukUs-00011o-IY for qemu-devel@nongnu.org; Mon, 05 Oct 2009 06:08:56 -0400 Received: from [199.232.76.173] (port=44761 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MukUs-00011X-CN for qemu-devel@nongnu.org; Mon, 05 Oct 2009 06:08:50 -0400 Received: from mail.valinux.co.jp ([210.128.90.3]:55402) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MukUr-00074P-MG for qemu-devel@nongnu.org; Mon, 05 Oct 2009 06:08:50 -0400 Received: from nm.local.valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by mail.valinux.co.jp (Postfix) with ESMTP id D9E2349D7D; Mon, 5 Oct 2009 19:08:40 +0900 (JST) Received: from yamahata by nm.local.valinux.co.jp with local (Exim 4.69) (envelope-from ) id 1MukT9-0004CX-Ev; Mon, 05 Oct 2009 19:07:03 +0900 From: Isaku Yamahata To: qemu-devel@nongnu.org, mst@redhat.com Date: Mon, 5 Oct 2009 19:06:42 +0900 Message-Id: <1254737223-16129-3-git-send-email-yamahata@valinux.co.jp> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1254737223-16129-1-git-send-email-yamahata@valinux.co.jp> References: <1254737223-16129-1-git-send-email-yamahata@valinux.co.jp> X-Virus-Scanned: clamav-milter 0.95.2 at va-mail.local.valinux.co.jp X-Virus-Status: Clean X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: yamahata@valinux.co.jp Subject: [Qemu-devel] [PATCH 02/23] pci: use appropriate PRIs in PCI_DPRINTF() for portability. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org use appropriate PRIs in PCI_DPRINTF() to print pci config space offset and value for portability. Signed-off-by: Isaku Yamahata --- hw/pci.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/hw/pci.c b/hw/pci.c index 4392574..d281ee2 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -561,7 +561,7 @@ void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len) int config_addr, bus_num; #if 0 - PCI_DPRINTF("pci_data_write: addr=%08x val=%08x len=%d\n", + PCI_DPRINTF("pci_data_write: addr=%08"PRIx32" val=%08"PRIx32" len=%d\n", addr, val, len); #endif bus_num = (addr >> 16) & 0xff; @@ -573,7 +573,8 @@ void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len) if (!pci_dev) return; config_addr = addr & 0xff; - PCI_DPRINTF("pci_config_write: %s: addr=%02x val=%08x len=%d\n", + PCI_DPRINTF("pci_config_write: %s: " + "addr=%02x val=%08"PRI32x" len=%d\n", pci_dev->name, config_addr, val, len); pci_dev->config_write(pci_dev, config_addr, val, len); } @@ -609,11 +610,12 @@ uint32_t pci_data_read(void *opaque, uint32_t addr, int len) } config_addr = addr & 0xff; val = pci_dev->config_read(pci_dev, config_addr, len); - PCI_DPRINTF("pci_config_read: %s: addr=%02x val=%08x len=%d\n", + PCI_DPRINTF("pci_config_read: %s: " + "addr=%02x val=%08"PRIx32" len=%d\n", pci_dev->name, config_addr, val, len); the_end: #if 0 - PCI_DPRINTF("pci_data_read: addr=%08x val=%08x len=%d\n", + PCI_DPRINTF("pci_data_read: addr=%08"PRIx32" val=%08"PRIx32" len=%d\n", addr, val, len); #endif return val;