Changeset 32379 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Sep 10, 2010 9:44:37 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r32346 r32379 1131 1131 { 1132 1132 /* Fast case - update one of BARs or ROM address, 'while' only for 'break' */ 1133 while (len == 4 && 1134 (u32Address >= VBOX_PCI_BASE_ADDRESS_0 && 1135 u32Address < VBOX_PCI_BASE_ADDRESS_0 + 6 * 4) 1136 || 1137 (u32Address >= VBOX_PCI_ROM_ADDRESS && u32Address < VBOX_PCI_ROM_ADDRESS+4)) 1133 while ( len == 4 1134 && ( ( u32Address >= VBOX_PCI_BASE_ADDRESS_0 1135 && u32Address < VBOX_PCI_BASE_ADDRESS_0 + 6 * 4) 1136 || ( u32Address >= VBOX_PCI_ROM_ADDRESS 1137 && u32Address < VBOX_PCI_ROM_ADDRESS+4) 1138 ) 1139 ) 1138 1140 { 1139 1141 PCIIORegion *pRegion;
Note:
See TracChangeset
for help on using the changeset viewer.