Changeset 33540 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Devices/Bus
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r32906 r33540 1035 1035 /* 1036 1036 * Set the prefetch base and limit registers. We currently have no device with a prefetchable region 1037 * which may be behind a bridge. That swhy it is unconditionally disabled here atm by writing a higher value into1037 * which may be behind a bridge. That's why it is unconditionally disabled here atm by writing a higher value into 1038 1038 * the base register than in the limit register. 1039 1039 */ … … 1062 1062 pci_config_writel(pGlobals, uBus, uDevFn, u32Address, UINT32_C(0xffffffff)); 1063 1063 u32Size = pci_config_readl(pGlobals, uBus, uDevFn, u32Address); 1064 /* Clear res source information depending on ressource type. */1064 /* Clear resource information depending on resource type. */ 1065 1065 if ((u8RessourceType & 0x01) == 1) /* I/O */ 1066 1066 u32Size &= ~(0x01); … … 2475 2475 * The bus number is mainly for the setIrq function to indicate 2476 2476 * when the host bus is reached which will have iBus = 0. 2477 * That hswhy the + 1.2477 * That's why the + 1. 2478 2478 */ 2479 2479 pBus->iBus = iInstance + 1; -
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r33476 r33540 1548 1548 /* 1549 1549 * Set the prefetch base and limit registers. We currently have no device with a prefetchable region 1550 * which may be behind a bridge. That swhy it is unconditionally disabled here atm by writing a higher value into1550 * which may be behind a bridge. That's why it is unconditionally disabled here atm by writing a higher value into 1551 1551 * the base register than in the limit register. 1552 1552 */ … … 2542 2542 * The bus number is mainly for the setIrq function to indicate 2543 2543 * when the host bus is reached which will have iBus = 0. 2544 * That hswhy the + 1.2544 * That's why the + 1. 2545 2545 */ 2546 2546 pBus->iBus = iInstance + 1;
Note:
See TracChangeset
for help on using the changeset viewer.