hw/usb-ohci.c: convert to PCIDeviceInfo to initialize ids
use PCIDeviceInfo to initialize ids. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
		
							parent
							
								
									d7b61ecc61
								
							
						
					
					
						commit
						a8eae58556
					
				@ -1716,11 +1716,7 @@ static int usb_ohci_initfn_pci(struct PCIDevice *dev)
 | 
				
			|||||||
    OHCIPCIState *ohci = DO_UPCAST(OHCIPCIState, pci_dev, dev);
 | 
					    OHCIPCIState *ohci = DO_UPCAST(OHCIPCIState, pci_dev, dev);
 | 
				
			||||||
    int num_ports = 3;
 | 
					    int num_ports = 3;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    pci_config_set_vendor_id(ohci->pci_dev.config, PCI_VENDOR_ID_APPLE);
 | 
					 | 
				
			||||||
    pci_config_set_device_id(ohci->pci_dev.config,
 | 
					 | 
				
			||||||
                             PCI_DEVICE_ID_APPLE_IPID_USB);
 | 
					 | 
				
			||||||
    ohci->pci_dev.config[PCI_CLASS_PROG] = 0x10; /* OHCI */
 | 
					    ohci->pci_dev.config[PCI_CLASS_PROG] = 0x10; /* OHCI */
 | 
				
			||||||
    pci_config_set_class(ohci->pci_dev.config, PCI_CLASS_SERIAL_USB);
 | 
					 | 
				
			||||||
    /* TODO: RST# value should be 0. */
 | 
					    /* TODO: RST# value should be 0. */
 | 
				
			||||||
    ohci->pci_dev.config[PCI_INTERRUPT_PIN] = 0x01; /* interrupt pin 1 */
 | 
					    ohci->pci_dev.config[PCI_INTERRUPT_PIN] = 0x01; /* interrupt pin 1 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1760,6 +1756,9 @@ static PCIDeviceInfo ohci_pci_info = {
 | 
				
			|||||||
    .qdev.desc    = "Apple USB Controller",
 | 
					    .qdev.desc    = "Apple USB Controller",
 | 
				
			||||||
    .qdev.size    = sizeof(OHCIPCIState),
 | 
					    .qdev.size    = sizeof(OHCIPCIState),
 | 
				
			||||||
    .init         = usb_ohci_initfn_pci,
 | 
					    .init         = usb_ohci_initfn_pci,
 | 
				
			||||||
 | 
					    .vendor_id    = PCI_VENDOR_ID_APPLE,
 | 
				
			||||||
 | 
					    .device_id    = PCI_DEVICE_ID_APPLE_IPID_USB,
 | 
				
			||||||
 | 
					    .class_id     = PCI_CLASS_SERIAL_USB,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static SysBusDeviceInfo ohci_sysbus_info = {
 | 
					static SysBusDeviceInfo ohci_sysbus_info = {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user