diff mbox

xen: move to new pci initializers

Message ID 20110626133956.GA7902@redhat.com
State New
Headers show

Commit Message

Michael S. Tsirkin June 26, 2011, 1:39 p.m. UTC
move ids to pci info structure

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Untested.

---
 hw/xen_platform.c |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

Comments

Stefano Stabellini June 27, 2011, 12:21 p.m. UTC | #1
On Sun, 26 Jun 2011, Michael S. Tsirkin wrote:
> move ids to pci info structure
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> Untested.
> 

tested and working correctly, it is fine by me.


> ---
>  hw/xen_platform.c |   15 +++++++--------
>  1 files changed, 7 insertions(+), 8 deletions(-)
> 
> diff --git a/hw/xen_platform.c b/hw/xen_platform.c
> index 9a01735..f43e175 100644
> --- a/hw/xen_platform.c
> +++ b/hw/xen_platform.c
> @@ -290,18 +290,10 @@ static int xen_platform_initfn(PCIDevice *dev)
>  
>      pci_conf = d->pci_dev.config;
>  
> -    pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_XEN);
> -    pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_XEN_PLATFORM);
> -    pci_set_word(pci_conf + PCI_SUBSYSTEM_VENDOR_ID, PCI_VENDOR_ID_XEN);
> -    pci_set_word(pci_conf + PCI_SUBSYSTEM_ID, PCI_DEVICE_ID_XEN_PLATFORM);
> -
>      pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
>  
> -    pci_config_set_revision(pci_conf, 1);
>      pci_config_set_prog_interface(pci_conf, 0);
>  
> -    pci_config_set_class(pci_conf, PCI_CLASS_OTHERS << 8 | 0x80);
> -
>      pci_conf[PCI_INTERRUPT_PIN] = 1;
>  
>      pci_register_bar(&d->pci_dev, 0, 0x100,
> @@ -330,6 +322,13 @@ static PCIDeviceInfo xen_platform_info = {
>      .qdev.size = sizeof(PCIXenPlatformState),
>      .qdev.vmsd = &vmstate_xen_platform,
>      .qdev.reset = platform_reset,
> +
> +    .vendor_id    =  PCI_VENDOR_ID_XEN,
> +    .device_id    = PCI_DEVICE_ID_XEN_PLATFORM,
> +    .class_id     = PCI_CLASS_OTHERS << 8 | 0x80,
> +    .subsystem_vendor_id = PCI_VENDOR_ID_XEN,
> +    .subsystem_id = PCI_DEVICE_ID_XEN_PLATFORM,
> +    .revision = 1,
>  };
>  
>  static void xen_platform_register(void)
> -- 
> 1.7.5.53.gc233e
>
Alexander Graf June 29, 2011, 11:05 a.m. UTC | #2
On 27.06.2011, at 14:21, Stefano Stabellini wrote:

> On Sun, 26 Jun 2011, Michael S. Tsirkin wrote:
>> move ids to pci info structure
>> 
>> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>> 
>> Untested.
>> 
> 
> tested and working correctly, it is fine by me.

Michael, which tree do you want this to go through?


Alex
Michael S. Tsirkin June 29, 2011, 12:51 p.m. UTC | #3
On Wed, Jun 29, 2011 at 01:05:07PM +0200, Alexander Graf wrote:
> 
> On 27.06.2011, at 14:21, Stefano Stabellini wrote:
> 
> > On Sun, 26 Jun 2011, Michael S. Tsirkin wrote:
> >> move ids to pci info structure
> >> 
> >> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> >> 
> >> Untested.
> >> 
> > 
> > tested and working correctly, it is fine by me.
> 
> Michael, which tree do you want this to go through?
> 
> 
> Alex

I put this on my tree.
diff mbox

Patch

diff --git a/hw/xen_platform.c b/hw/xen_platform.c
index 9a01735..f43e175 100644
--- a/hw/xen_platform.c
+++ b/hw/xen_platform.c
@@ -290,18 +290,10 @@  static int xen_platform_initfn(PCIDevice *dev)
 
     pci_conf = d->pci_dev.config;
 
-    pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_XEN);
-    pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_XEN_PLATFORM);
-    pci_set_word(pci_conf + PCI_SUBSYSTEM_VENDOR_ID, PCI_VENDOR_ID_XEN);
-    pci_set_word(pci_conf + PCI_SUBSYSTEM_ID, PCI_DEVICE_ID_XEN_PLATFORM);
-
     pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
 
-    pci_config_set_revision(pci_conf, 1);
     pci_config_set_prog_interface(pci_conf, 0);
 
-    pci_config_set_class(pci_conf, PCI_CLASS_OTHERS << 8 | 0x80);
-
     pci_conf[PCI_INTERRUPT_PIN] = 1;
 
     pci_register_bar(&d->pci_dev, 0, 0x100,
@@ -330,6 +322,13 @@  static PCIDeviceInfo xen_platform_info = {
     .qdev.size = sizeof(PCIXenPlatformState),
     .qdev.vmsd = &vmstate_xen_platform,
     .qdev.reset = platform_reset,
+
+    .vendor_id    =  PCI_VENDOR_ID_XEN,
+    .device_id    = PCI_DEVICE_ID_XEN_PLATFORM,
+    .class_id     = PCI_CLASS_OTHERS << 8 | 0x80,
+    .subsystem_vendor_id = PCI_VENDOR_ID_XEN,
+    .subsystem_id = PCI_DEVICE_ID_XEN_PLATFORM,
+    .revision = 1,
 };
 
 static void xen_platform_register(void)