Changeset 51409 in vbox for trunk/src/VBox
- Timestamp:
- May 26, 2014 8:29:00 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93944
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r51383 r51409 83 83 /** The current saved state version. */ 84 84 #define AHCI_SAVED_STATE_VERSION 8 85 /** The saved state version before changing the port reset logic in an incomp tible way. */85 /** The saved state version before changing the port reset logic in an incompatible way. */ 86 86 #define AHCI_SAVED_STATE_VERSION_PRE_PORT_RESET_CHANGES 7 87 87 /** Saved state version before the per port hotplug port was added. */ … … 7134 7134 * prevent older BIOS versions from failing after a reset. 7135 7135 */ 7136 if (uVersion < AHCI_SAVED_STATE_VERSION_PRE_PORT_RESET_CHANGES)7136 if (uVersion <= AHCI_SAVED_STATE_VERSION_PRE_PORT_RESET_CHANGES) 7137 7137 pThis->fLegacyPortResetMethod = true; 7138 7138
Note:
See TracChangeset
for help on using the changeset viewer.