From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MMfvS-0001ky-Pv for qemu-devel@nongnu.org; Fri, 03 Jul 2009 06:23:26 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MMfvN-0001g0-0b for qemu-devel@nongnu.org; Fri, 03 Jul 2009 06:23:25 -0400 Received: from [199.232.76.173] (port=51451 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MMfvM-0001fm-ML for qemu-devel@nongnu.org; Fri, 03 Jul 2009 06:23:20 -0400 Received: from mx2.redhat.com ([66.187.237.31]:57949) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MMfvK-00061k-PS for qemu-devel@nongnu.org; Fri, 03 Jul 2009 06:23:19 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n63ANH5g003029 for ; Fri, 3 Jul 2009 06:23:17 -0400 From: Gerd Hoffmann Date: Fri, 3 Jul 2009 12:22:58 +0200 Message-Id: <1246616578-6560-14-git-send-email-kraxel@redhat.com> In-Reply-To: <1246616578-6560-1-git-send-email-kraxel@redhat.com> References: <1246616578-6560-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 13/13] qdev: print device id in "info pci". List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/pci.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/pci.c b/hw/pci.c index 5acf0d9..3410ea7 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -738,6 +738,7 @@ static void pci_info_device(PCIDevice *d) } } } + monitor_printf(mon, " id \"%s\"\n", d->qdev.id); if (class == 0x0604 && d->config[0x19] != 0) { pci_for_each_device(d->config[0x19], pci_info_device); } -- 1.6.2.5