* I don't know what's going on, but with this change, I can boot Haiku again

on my P35 with JMircon controller. I still have the "pci fixup" disabled
  though. Without this change, I could boot until the blue desktop background
  with cursor, but all the apps were in frozen state and would not display
  on screen (F12 worked and showed Tracker and so on as running teams, but
  I could not even move the mouse)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23015 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2007-11-28 18:38:34 +00:00
parent 6b09666034
commit af65a961b9
@@ -339,10 +339,11 @@ AHCIController::ResetDevice(uchar targetID, uchar targetLUN)
void
AHCIController::GetRestrictions(uchar targetID, bool *isATAPI, bool *noAutoSense, uint32 *maxBlocks)
AHCIController::GetRestrictions(uchar targetID, bool *isATAPI,
bool *noAutoSense, uint32 *maxBlocks)
{
if (!fPort[targetID])
return;
return fPort[targetID]->ScsiGetRestrictions(isATAPI, noAutoSense, maxBlocks);
fPort[targetID]->ScsiGetRestrictions(isATAPI, noAutoSense, maxBlocks);
}