[Denali] No longer store Commands on the port.

This commit is contained in:
Drew Galbraith 2023-12-08 14:48:41 -08:00
parent 28a0f02b05
commit e71017070f
6 changed files with 26 additions and 30 deletions

View file

@ -23,7 +23,7 @@ class AhciPort {
glcr::ErrorCode Identify();
glcr::ErrorOr<mmth::Semaphore*> IssueCommand(Command* command);
glcr::ErrorOr<mmth::Semaphore*> IssueCommand(const Command& command);
void HandleIrq();
@ -38,7 +38,6 @@ class AhciPort {
volatile ReceivedFis* received_fis_ = nullptr;
glcr::ArrayView<CommandTable> command_tables_;
Command* commands_[32];
glcr::Array<mmth::Semaphore> command_signals_;
uint32_t commands_issued_ = 0;
};