Changeset 48721 in vbox
- Timestamp:
- Sep 26, 2013 7:37:59 PM (11 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r48409 r48721 2991 2991 || ( pAhciPort->fAsyncInterface 2992 2992 && pAhciPort->pDrvBlockAsync->pfnStartDiscard) 2993 || pAhciPort->cbSector != 512) 2993 || pAhciPort->cbSector != 512 2994 || pAhciPort->fNonRotational) 2994 2995 { 2995 2996 p[80] = RT_H2LE_U16(0x1f0); /* support everything up to ATA/ATAPI-8 ACS */ -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r47842 r48721 1257 1257 p[68] = RT_H2LE_U16(120); /* minimum PIO cycle time with IORDY flow control */ 1258 1258 if ( s->pDrvBlock->pfnDiscard 1259 || s->cbSector != 512) 1259 || s->cbSector != 512 1260 || s->fNonRotational) 1260 1261 { 1261 1262 p[80] = RT_H2LE_U16(0x1f0); /* support everything up to ATA/ATAPI-8 ACS */
Note:
See TracChangeset
for help on using the changeset viewer.