Skip to content

Commit

Permalink
refac(hal_x86_64): rename apic::io to ioapic (#497)
Browse files Browse the repository at this point in the history
I don't like that the module is just called "io", that feels weird.
  • Loading branch information
hawkw committed Dec 30, 2024
1 parent e23a00d commit 05c7aab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hal-x86_64/src/interrupt/apic.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Advanced Programmable Interrupt Controller (APIC).
pub mod io;
pub mod ioapic;
pub mod local;
pub use io::{IoApic, IoApicSet};
pub use ioapic::{IoApic, IoApicSet};
pub use local::LocalApic;

use mycelium_util::bits::enum_from_bits;
Expand Down
File renamed without changes.

0 comments on commit 05c7aab

Please sign in to comment.