Changeset 40774 in vbox
- Timestamp:
- Apr 5, 2012 12:29:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r40773 r40774 1578 1578 static bool ataReadSectorsSS(ATADevState *s) 1579 1579 { 1580 int rc = VERR_GENERAL_FAILURE;1580 int rc; 1581 1581 uint32_t cSectors; 1582 1582 uint64_t iLBA; 1583 bool fRedo = false;1583 bool fRedo; 1584 1584 1585 1585 cSectors = s->cbElementaryTransfer / 512; … … 3835 3835 static bool ataTrimSS(ATADevState *s) 3836 3836 { 3837 int rc ;3837 int rc = VERR_GENERAL_FAILURE; 3838 3838 uint32_t cRangesMax; 3839 3839 uint64_t *pu64Range = (uint64_t *)s->CTX_SUFF(pbIOBuffer); 3840 bool fRedo ;3840 bool fRedo = false; 3841 3841 3842 3842 cRangesMax = s->cbElementaryTransfer / sizeof(uint64_t);
Note:
See TracChangeset
for help on using the changeset viewer.