mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:37:34 +00:00
Kernel: Add support for SD host controllers on the PCI bus
This commit is contained in:
parent
47cae8005f
commit
5fe6c6fc24
5 changed files with 124 additions and 5 deletions
|
@ -84,6 +84,7 @@ enum class ClassID {
|
|||
MassStorage = 0x1,
|
||||
Multimedia = 0x4,
|
||||
Bridge = 0x6,
|
||||
Base = 0x8,
|
||||
};
|
||||
|
||||
namespace MassStorage {
|
||||
|
@ -116,6 +117,14 @@ enum class SubclassID {
|
|||
|
||||
}
|
||||
|
||||
namespace Base {
|
||||
|
||||
enum class SubclassID {
|
||||
SDHostController = 0x5,
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
AK_TYPEDEF_DISTINCT_ORDERED_ID(u8, CapabilityID);
|
||||
|
||||
namespace Capabilities {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue