From: Isaku Yamahata <yamahata@valinux.co.jp>
To: qemu-devel@nongnu.org, mst@redhat.com
Cc: yamahata@valinux.co.jp
Subject: [Qemu-devel] [PATCH V2 02/10] pci: s/PCI_SUBVENDOR_ID/PCI_SUBSYSTEM_VENDOR_ID/g
Date: Tue, 15 Dec 2009 20:25:59 +0900 [thread overview]
Message-ID: <1260876367-28197-3-git-send-email-yamahata@valinux.co.jp> (raw)
In-Reply-To: <1260876367-28197-1-git-send-email-yamahata@valinux.co.jp>
To match Linux PCI register definition,
rename PCI_SUBVENDOR_ID to PCI_SUBSYSTEM_VENDOR_ID.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
---
hw/pci.c | 2 +-
hw/pci.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/pci.c b/hw/pci.c
index aed3a24..c4688af 100644
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -411,7 +411,7 @@ static int pci_set_default_subsystem_id(PCIDevice *pci_dev)
{
uint16_t *id;
- id = (void*)(&pci_dev->config[PCI_SUBVENDOR_ID]);
+ id = (void*)(&pci_dev->config[PCI_SUBSYSTEM_VENDOR_ID]);
id[0] = cpu_to_le16(pci_default_sub_vendor_id);
id[1] = cpu_to_le16(pci_default_sub_device_id);
return 0;
diff --git a/hw/pci.h b/hw/pci.h
index 475b044..3be7a99 100644
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -155,7 +155,7 @@ typedef struct PCIIORegion {
#define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */
#define PCI_REVISION 0x08 /* obsolete, use PCI_REVISION_ID */
-#define PCI_SUBVENDOR_ID 0x2c /* obsolete, use PCI_SUBSYSTEM_VENDOR_ID */
+#define PCI_SUBSYSTEM_VENDOR_ID 0x2c
#define PCI_SUBDEVICE_ID 0x2e /* obsolete, use PCI_SUBSYSTEM_ID */
/* Bits in the PCI Status Register (PCI 2.3 spec) */
--
1.6.5.4
next prev parent reply other threads:[~2009-12-15 11:26 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-15 11:25 [Qemu-devel] [PATCH V2 00/10] various pci clean ups Isaku Yamahata
2009-12-15 11:25 ` [Qemu-devel] [PATCH V2 01/10] pci: remove PCIBus::config_reg Isaku Yamahata
2009-12-15 11:25 ` Isaku Yamahata [this message]
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 03/10] pci: import Linux pci_regs.h Isaku Yamahata
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 04/10] pci: use pci_regs.h Isaku Yamahata
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 05/10] gt64xxx: remove gt64120_{read, write}_config() Isaku Yamahata
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 06/10] acpi: use range helper function Isaku Yamahata
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 07/10] msix: " Isaku Yamahata
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 08/10] piix_pci: define symbolic value for PAM0, PAM6 and SMRAM Isaku Yamahata
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 09/10] piix_pci: use range helper function Isaku Yamahata
2009-12-15 11:26 ` [Qemu-devel] [PATCH V2 10/10] piix_pci: add link to i440fx data sheet Isaku Yamahata
2009-12-15 11:41 ` [Qemu-devel] Re: [PATCH V2 00/10] various pci clean ups Michael S. Tsirkin
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=1260876367-28197-3-git-send-email-yamahata@valinux.co.jp \
--to=yamahata@valinux.co.jp \
--cc=mst@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).