Initialize the device_status field of the CCB. This makes modules using raw

commands work that check this value (like the CDDA filesystem, so audio CDs
work now).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30288 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2009-04-21 00:59:24 +00:00
parent 8b3b05cbf9
commit d102012d3a

View File

@ -94,6 +94,7 @@ ATARequest::Start(scsi_ccb *ccb)
fCCB = ccb;
fStatus = SCSI_REQ_CMP;
fCCB->device_status = SCSI_STATUS_GOOD;
fIsWrite = false;
return B_OK;
}