Skip to content

Commit

Permalink
format code on main with newer rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
aarkegz committed Dec 20, 2024
1 parent af516df commit 680ee02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/axhal/src/platform/aarch64_phytium_pi/mem.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::mem::*;
use page_table_entry::{aarch64::A64PTE, GenericPTE, MappingFlags};
use page_table_entry::{GenericPTE, MappingFlags, aarch64::A64PTE};

/// Returns platform-specific memory regions.
pub(crate) fn platform_regions() -> impl Iterator<Item = MemRegion> {
Expand Down
2 changes: 1 addition & 1 deletion modules/axhal/src/platform/aarch64_phytium_pi/mp.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use axconfig::CPU_ID_LIST;

use crate::mem::{virt_to_phys, PhysAddr};
use crate::mem::{PhysAddr, virt_to_phys};

extern "C" {
fn _start_secondary();
Expand Down

0 comments on commit 680ee02

Please sign in to comment.