Changeset 34332 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Nov 24, 2010 4:43:26 PM (14 years ago)
- Location:
- trunk/src/VBox/Devices/Bus
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r33540 r34332 1983 1983 1984 1984 /** 1985 * @copydoc FNPDMDEVRESET 1986 */ 1987 static DECLCALLBACK(void) pciReset(PPDMDEVINS pDevIns) 1988 { 1989 pciFakePCIBIOS(pDevIns); 1990 } 1991 1992 /** 1985 1993 * @interface_method_impl{PDMDEVREG,pfnConstruct} 1986 1994 */ … … 2164 2172 NULL, 2165 2173 /* pfnReset */ 2166 NULL,2174 pciReset, 2167 2175 /* pfnSuspend */ 2168 2176 NULL, -
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r34302 r34332 2395 2395 PCIDevSetByte(pDev, VBOX_PCI_INTERRUPT_LINE, 0x0); 2396 2396 } 2397 else 2398 { 2399 /* @todo: reset devices behind the bridge too */ 2400 } 2397 2401 /* Regions ? */ 2398 2402 } … … 2407 2411 PPCIBUS pBus = &pGlobals->aPciBus; 2408 2412 2409 /* Relocate RC pointers for the attached pci devices. */2413 /* PCI-specific reset for each device. */ 2410 2414 for (uint32_t i = 0; i < RT_ELEMENTS(pBus->apDevices); i++) 2411 2415 {
Note:
See TracChangeset
for help on using the changeset viewer.