Changeset 35258 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Dec 20, 2010 5:12:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r34836 r35258 517 517 } 518 518 519 /* irqs corresponding to PCI irqs A-D */520 static const uint8_t aPciIrqs[4] = { 11, 9, 11, 9};519 /* irqs corresponding to PCI irqs A-D, must match pci_irq_list in rombios.c */ 520 static const uint8_t aPciIrqs[4] = { 11, 10, 9, 5 }; 521 521 522 522 /* Add one more level up request on APIC input line */ … … 2462 2462 static void ich9pciResetDevice(PPCIDEVICE pDev) 2463 2463 { 2464 /* Clear regions */ 2465 memset(&pDev->Int.s.aIORegions, 0, sizeof(pDev->Int.s.aIORegions)); 2466 2464 2467 PCIDevSetCommand(pDev, 2465 2468 PCIDevGetCommand(pDev) … … 2475 2478 PCIDevSetInterruptLine(pDev, 0x0); 2476 2479 } 2477 /* Clear regions too ? */2478 2480 } 2479 2481
Note:
See TracChangeset
for help on using the changeset viewer.