1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:57:44 +00:00

Kernel: Add support for SD host controllers on the PCI bus

This commit is contained in:
Marco Cutecchia 2023-03-23 21:31:01 +01:00 committed by Andrew Kaster
parent 47cae8005f
commit 5fe6c6fc24
5 changed files with 124 additions and 5 deletions

View file

@ -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 {