~linaro-maintainers/ubuntu/maverick/qemu-linaro/ppa

« back to all changes in this revision

Viewing changes to hw/ioh3420.c

  • Committer: Steve Langasek
  • Date: 2011-08-19 22:00:20 UTC
  • mfrom: (12827.1.41 oneiric)
  • Revision ID: steve.langasek@canonical.com-20110819220020-xtgbfx30fg03h7k8
Tags: 0.15.50-2011.08-0ubuntu1~ppa10.10.1
upload to the tools ppa

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
        return rc;
105
105
    }
106
106
 
107
 
    d->config[PCI_REVISION_ID] = PCI_DEVICE_ID_IOH_REV;
108
107
    pcie_port_init_reg(d);
109
108
 
110
 
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_INTEL);
111
 
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_IOH_EPORT);
112
 
 
113
109
    rc = pci_bridge_ssvid_init(d, IOH_EP_SSVID_OFFSET,
114
110
                               IOH_EP_SSVID_SVID, IOH_EP_SSVID_SSID);
115
111
    if (rc < 0) {
217
213
    .config_write = ioh3420_write_config,
218
214
    .init = ioh3420_initfn,
219
215
    .exit = ioh3420_exitfn,
 
216
    .vendor_id = PCI_VENDOR_ID_INTEL,
 
217
    .device_id = PCI_DEVICE_ID_IOH_EPORT,
 
218
    .revision = PCI_DEVICE_ID_IOH_REV,
220
219
 
221
220
    .qdev.props = (Property[]) {
222
221
        DEFINE_PROP_UINT8("port", PCIESlot, port.port, 0),