 
	
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [v4][PATCH 3/5] I440FX_PCI_DEVICE: add pci_type to index
 On 2014/8/6 17:45, Michael S. Tsirkin wrote: On Wed, Aug 06, 2014 at 02:50:33PM +0800, Tiejun Chen wrote:We need to use this index to reuse this macro later Signed-off-by: Tiejun Chen <tiejun.chen@xxxxxxxxx>Which index? Most users don't need to change. Just open-code OBJECT_CHECK where necessary, or add a new wrapper. 
Okay so what about this?
    hw:pci-host:piix: define I440FX_PCI_DEVICE_FROM_TYPE
    We need to introduce I440FX_PCI_DEVICE_FROM_TYPE to get
    object with type, then we can reuse i440fx_init() simply.
    Signed-off-by: Tiejun Chen <tiejun.chen@xxxxxxxxx>
diff --git a/hw/pci-host/piix.c b/hw/pci-host/piix.c
index 0cd82b8..8c74653 100644
--- a/hw/pci-host/piix.c
+++ b/hw/pci-host/piix.c
@@ -93,6 +93,9 @@ typedef struct PIIX3State {
 #define I440FX_PCI_DEVICE(obj) \
     OBJECT_CHECK(PCII440FXState, (obj), TYPE_I440FX_PCI_DEVICE)
+#define I440FX_PCI_DEVICE_FROM_TYPE(obj, type) \
+    OBJECT_CHECK(PCII440FXState, (obj), type)
+
 struct PCII440FXState {
     /*< private >*/
     PCIDevice parent_obj;
@@ -333,7 +336,7 @@ PCIBus *i440fx_init(const char *host_type, const 
char *pci_type,
     qdev_init_nofail(dev);
     d = pci_create_simple(b, 0, pci_type);
-    *pi440fx_state = I440FX_PCI_DEVICE(d);
+    *pi440fx_state = I440FX_PCI_DEVICE_FROM_TYPE(d, pci_type);
     f = *pi440fx_state;
     f->system_memory = address_space_mem;
     f->pci_address_space = pci_address_space;
Thanks
Tiejun
 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel 
 
 
 | 
|  | Lists.xenproject.org is hosted with RackSpace, monitoring our |