aboutsummaryrefslogtreecommitdiff
path: root/asm/inline.rs
diff options
context:
space:
mode:
Diffstat (limited to 'asm/inline.rs')
-rw-r--r--asm/inline.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/inline.rs b/asm/inline.rs
index 688604e..f6a3ebb 100644
--- a/asm/inline.rs
+++ b/asm/inline.rs
@@ -6,7 +6,7 @@
//! All of these functions should be blanket-`unsafe`. `cortex-m` provides safe wrappers where
//! applicable.
-use core::sync::atomic::{Ordering, compiler_fence};
+use core::sync::atomic::{compiler_fence, Ordering};
#[inline(always)]
pub unsafe fn __bkpt() {
@@ -187,7 +187,7 @@ pub unsafe fn __syscall(mut nr: u32, arg: u32) -> u32 {
pub use self::v7m::*;
#[cfg(any(armv7m, armv8m_main))]
mod v7m {
- use core::sync::atomic::{Ordering, compiler_fence};
+ use core::sync::atomic::{compiler_fence, Ordering};
#[inline(always)]
pub unsafe fn __basepri_max(val: u8) {