1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00

Kernel: Add an SD card driver for the aarch64 port

Co-authored-by: Ollrogge <nils-ollrogge@outlook.de>
This commit is contained in:
Marco Cutecchia 2023-03-16 10:54:29 +01:00 committed by Linus Groh
parent bb8092d6a1
commit c91db6ec97
13 changed files with 1465 additions and 0 deletions

View file

@ -77,6 +77,8 @@ StringView StorageDevice::command_set_to_string_view() const
return "ata"sv;
case CommandSet::NVMe:
return "nvme"sv;
case CommandSet::SD:
return "sd"sv;
default:
break;
}