Move port controller to separate file.

This commit is contained in:
Drew Galbraith 2025-02-01 14:42:45 -08:00
parent 440de700f9
commit 15a5e210ef
4 changed files with 279 additions and 268 deletions

View file

@ -2,8 +2,9 @@ mod command;
mod controller;
mod hba;
mod port;
mod port_controller;
pub use controller::identify_ports;
pub use controller::spawn_irq_thread;
pub use controller::AhciController;
pub use controller::Command;
pub use port_controller::Command;