From e85aed451d4215e37aeab6c06c23fa09b48dcd1d Mon Sep 17 00:00:00 2001 From: Justin Beaurivage Date: Fri, 18 Oct 2024 16:36:37 -0400 Subject: [PATCH] Fix some clippy lints --- hal/src/async_hal/interrupts.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/hal/src/async_hal/interrupts.rs b/hal/src/async_hal/interrupts.rs index ae111e66702..a1d76625ed4 100644 --- a/hal/src/async_hal/interrupts.rs +++ b/hal/src/async_hal/interrupts.rs @@ -379,13 +379,6 @@ pub trait InterruptExt: InterruptNumber + Copy { compiler_fence(Ordering::SeqCst); } - /// Check if interrupt is being handled. - // #[inline] - // #[hal_cfg("nvic-d5x")] - // fn is_active(self) -> bool { - // NVIC::is_active(self) - // } - /// Check if interrupt is enabled. #[inline] fn is_enabled(self) -> bool {