mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-14 05:22:24 +00:00
Kernel: Add support for SD host controllers on the PCI bus
This commit is contained in:
parent
47cae8005f
commit
5fe6c6fc24
Notes:
sideshowbarker
2024-07-17 04:49:48 +09:00
Author: https://github.com/mrkct
Commit: 5fe6c6fc24
Pull-request: https://github.com/SerenityOS/serenity/pull/18139
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/supercomputer7 ✅
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