qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] xen: move to new pci initializers


From: Stefano Stabellini
Subject: Re: [Qemu-devel] [PATCH] xen: move to new pci initializers
Date: Mon, 27 Jun 2011 13:21:41 +0100
User-agent: Alpine 2.00 (DEB 1167 2008-08-23)

On Sun, 26 Jun 2011, Michael S. Tsirkin wrote:
> move ids to pci info structure
> 
> Signed-off-by: Michael S. Tsirkin <address@hidden>
> 
> 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
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]