Move command.rs to ahci_command.rs
This commit is contained in:
parent
15a5e210ef
commit
4efeca661e
|
@ -1,4 +1,4 @@
|
|||
mod command;
|
||||
mod ahci_command;
|
||||
mod controller;
|
||||
mod hba;
|
||||
mod port;
|
||||
|
|
|
@ -11,13 +11,14 @@ use alloc::boxed::Box;
|
|||
use alloc::sync::Arc;
|
||||
use mammoth::{cap::Capability, mem, sync::Mutex, syscall, zion::ZError};
|
||||
|
||||
use crate::ahci::command::FisType;
|
||||
use crate::ahci::port::AhciPortInterruptStatus;
|
||||
|
||||
use super::command::{
|
||||
CommandList, CommandTable, HostToDeviceRegisterFis, ReceivedFis, SataCommand,
|
||||
use super::{
|
||||
ahci_command::{
|
||||
CommandList, CommandTable, FisType, HostToDeviceRegisterFis, ReceivedFis, SataCommand,
|
||||
},
|
||||
port::AhciPortHba,
|
||||
};
|
||||
use super::port::AhciPortHba;
|
||||
|
||||
enum CommandStatus {
|
||||
Empty,
|
||||
|
|
Loading…
Reference in New Issue