* AHCI and other SATA drivers aren't in busses/sata, but either busses/scsi

or busses/ide.
* This change makes the AHCI driver working again.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25705 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-05-29 15:03:15 +00:00
parent 9101535322
commit abc690633a

View File

@ -1427,7 +1427,9 @@ device_node::_GetNextDriverPath(void*& cookie, KPath& _path)
_AddPath(*stack, "busses", "ide"); _AddPath(*stack, "busses", "ide");
break; break;
case PCI_sata: case PCI_sata:
_AddPath(*stack, "busses", "sata"); // TODO: check for ahci interface
_AddPath(*stack, "busses", "scsi");
_AddPath(*stack, "busses", "ide");
break; break;
default: default:
_AddPath(*stack, "busses"); _AddPath(*stack, "busses");